diff options
author | Florian Klink <flokli@flokli.de> | 2023-10-14T20·34+0100 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2023-10-15T15·10+0000 |
commit | 8a0fa69c6cd031b76d97442e3fe0176b6abb213e (patch) | |
tree | 724b7339479d5156336b9d6e17d6820e9afd3c60 /tvix/nix-compat/src/nixhash/mod.rs | |
parent | c3446da1c7a6dab55c07dae755ef5249deb8649e (diff) |
feat(tvix/nix-compat/nixhash/NixHashWithMode): from_algo_mode_hash r/6813
Change-Id: Ieae628fab1926a498ae5c3eb27df1b722e6151d7 Reviewed-on: https://cl.tvl.fyi/c/depot/+/9728 Reviewed-by: edef <edef@edef.eu> Autosubmit: flokli <flokli@flokli.de> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/nix-compat/src/nixhash/mod.rs')
-rw-r--r-- | tvix/nix-compat/src/nixhash/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tvix/nix-compat/src/nixhash/mod.rs b/tvix/nix-compat/src/nixhash/mod.rs index 3b2810b8b0bf..9586473d1b9a 100644 --- a/tvix/nix-compat/src/nixhash/mod.rs +++ b/tvix/nix-compat/src/nixhash/mod.rs @@ -65,8 +65,8 @@ impl TryFrom<(HashAlgo, &[u8])> for NixHash { } /// Constructs a new [NixHash] by specifying [HashAlgo] and digest. -// It can fail if the passed digest length doesn't match what's expected for -// the passed algo. +/// It can fail if the passed digest length doesn't match what's expected for +/// the passed algo. pub fn from_algo_and_digest(algo: HashAlgo, digest: &[u8]) -> Result<NixHash> { if digest.len() != algo.digest_length() { return Err(Error::InvalidEncodedDigestLength(digest.len(), algo)); |