diff options
author | Florian Klink <flokli@flokli.de> | 2023-01-31T14·10+0100 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-01-31T15·35+0000 |
commit | a7e20bbef356d2d3191bd1ac801d8d183ebf527a (patch) | |
tree | fa1b4e266df6f7dd5fcf4d302c692d87a29f56fd /tvix | |
parent | ddf6e6cf47b5a276ca3c973e44aa1d0478e2d275 (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>
Diffstat (limited to 'tvix')
-rw-r--r-- | tvix/nix-compat/src/store_path.rs | 4 |
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 5032a73fb19b..e6c703f7ce0c 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: `-`, `_`, `.`, /// `+`, `?`, `=`. /// |