summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorandy.boot <bootandy@gmail.com>2023-01-18 00:07:31 +0000
committerandy.boot <bootandy@gmail.com>2023-01-21 16:40:21 +0000
commit3fd78490e6985d2fdc9d155c1450b9e669ebcbc5 (patch)
treef6aa226a945b8962d52a2796a3ddb068fbc78cdb
parentb903f58cead085eb12e55a7e7663de2d92e67ad5 (diff)
Comment: Remove comment
This can't be done easily
-rw-r--r--src/display_node.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/display_node.rs b/src/display_node.rs
index 8c72964..4ef1025 100644
--- a/src/display_node.rs
+++ b/src/display_node.rs
@@ -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>,
}