clean up minor items

This commit is contained in:
steven-omaha
2023-01-10 15:00:21 +01:00
parent 160e4d0b4c
commit 627f66ea35
6 changed files with 6 additions and 33 deletions
+2 -2
View File
@@ -9,8 +9,8 @@ use crate::section::Section;
#[derive(Debug)]
pub struct Group {
pub name: String,
pub sections: HashSet<Section>,
pub(crate) name: String,
pub(crate) sections: HashSet<Section>,
}
impl Group {