about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2023-01-31T14·10+0100
committerclbot <clbot@tvl.fyi>2023-01-31T15·35+0000
commita7e20bbef356d2d3191bd1ac801d8d183ebf527a (patch)
treefa1b4e266df6f7dd5fcf4d302c692d87a29f56fd
parentddf6e6cf47b5a276ca3c973e44aa1d0478e2d275 (diff)
docs(tvix/nix-compat/store_path): fix docstrings r/5796
Change-Id: I19261233e338b406a87fe680675eb4dfd853fe11
Reviewed-on: https://cl.tvl.fyi/c/depot/+/7970
Tested-by: BuildkiteCI
Reviewed-by: tazjin <tazjin@tvl.su>
Autosubmit: flokli <flokli@flokli.de>
-rw-r--r--tvix/nix-compat/src/store_path.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tvix/nix-compat/src/store_path.rs b/tvix/nix-compat/src/store_path.rs
index 5032a73fb1..e6c703f7ce 100644
--- a/tvix/nix-compat/src/store_path.rs
+++ b/tvix/nix-compat/src/store_path.rs
@@ -27,8 +27,8 @@ pub enum ParseStorePathError {
 
 /// Represents a path in the Nix store (a direct child of [STORE_DIR]).
 ///
-/// It starts with a digest (20 bytes), [struct@NIXBASE32]-encoded, followed by
-/// a `-`, and ends with a `name`, which is a string, consisting only of ASCCI
+/// It starts with a digest (20 bytes), [crate::nixbase32]-encoded,
+/// followed by a `-`, and ends with a `name`, which is a string, consisting only of ASCCI
 /// alphanumeric characters, or one of the following characters: `-`, `_`, `.`,
 /// `+`, `?`, `=`.
 ///