Comment: Remove comment

This can't be done easily
This commit is contained in:
andy.boot
2023-01-18 00:07:31 +00:00
parent b903f58cea
commit 3fd78490e6

View File

@@ -4,7 +4,7 @@ use std::path::PathBuf;
pub struct DisplayNode {
// Note: the order of fields in important here, for PartialEq and PartialOrd
pub size: u64,
pub name: PathBuf, //todo: consider moving to a string?
pub name: PathBuf,
pub children: Vec<DisplayNode>,
}