about summary refs log tree commit diff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tvix/store/src/store_path.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/store/src/store_path.rs b/tvix/store/src/store_path.rs
index f437edb6b2..e7b600e8ae 100644
--- a/tvix/store/src/store_path.rs
+++ b/tvix/store/src/store_path.rs
@@ -81,7 +81,7 @@ impl StorePath {
         }
     }
 
-    // Converts the [StorePath] to an absolute store path string.
+    /// Converts the [StorePath] to an absolute store path string.
     /// That is a string starting with the store prefix (/nix/store)
     pub fn to_absolute_path(&self) -> String {
         format!("{}/{}", STORE_DIR, self)