diff options
Diffstat (limited to 'tvix/store')
-rw-r--r-- | tvix/store/src/proto.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tvix/store/src/proto.rs b/tvix/store/src/proto.rs index 85577975985e..706041d6a3c3 100644 --- a/tvix/store/src/proto.rs +++ b/tvix/store/src/proto.rs @@ -178,8 +178,8 @@ fn insert_once<'n>( } impl Directory { - // The size of a directory is the number of all regular and symlink elements, - // the number of directory elements, and their size fields. + /// The size of a directory is the number of all regular and symlink elements, + /// the number of directory elements, and their size fields. pub fn size(&self) -> u32 { self.files.len() as u32 + self.symlinks.len() as u32 |