From 4a256dda094b806198b316be7460a0423f683a51 Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Tue, 17 Jan 2023 12:39:47 +0100 Subject: docs(tvix/store): fix docstring for StorePath::to_absolute_path Change-Id: I8b36c85fe11e4fb62e5d28f6900cd80d89a5cc41 Reviewed-on: https://cl.tvl.fyi/c/depot/+/7854 Reviewed-by: tazjin Tested-by: BuildkiteCI --- tvix/store/src/store_path.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tvix/store/src') diff --git a/tvix/store/src/store_path.rs b/tvix/store/src/store_path.rs index f437edb6b2d8..e7b600e8ae1d 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) -- cgit 1.4.1