about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--tvix/store/src/proto.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tvix/store/src/proto.rs b/tvix/store/src/proto.rs
index 8557797598..706041d6a3 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