diff options
author | Florian Klink <flokli@flokli.de> | 2022-12-29T20·13+0100 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2022-12-29T21·51+0000 |
commit | e97a429e73c8bce41a88527fdebce4f1373152a6 (patch) | |
tree | 27f72c3ded41aa4fe258833e041ca3e6e371858d /tvix/store/src | |
parent | d62c7ddfda68f31857a8c8c6cc02a30b3743a4c4 (diff) |
fix(tvix/store): fix typo r/5548
Change-Id: I351a2bd4e007443aef1b97f50aecffc095ac60b1 Reviewed-on: https://cl.tvl.fyi/c/depot/+/7681 Autosubmit: flokli <flokli@flokli.de> Tested-by: BuildkiteCI Reviewed-by: jrhahn <mail.jhahn@gmail.com> Reviewed-by: tazjin <tazjin@tvl.su>
Diffstat (limited to 'tvix/store/src')
-rw-r--r-- | tvix/store/src/proto.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/store/src/proto.rs b/tvix/store/src/proto.rs index 40f1d1050c10..74563db3fb9a 100644 --- a/tvix/store/src/proto.rs +++ b/tvix/store/src/proto.rs @@ -20,7 +20,7 @@ pub enum ValidateDirectoryError { #[error("Invalid name in {0}")] InvalidName(String), /// Invalid digest length encountered - #[error("Ivalid Digest length: {0}")] + #[error("Invalid Digest length: {0}")] InvalidDigestLen(usize), } |