about summary refs log tree commit diff
path: root/tvix/store/src/proto.rs
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2022-12-29T20·13+0100
committerflokli <flokli@flokli.de>2022-12-29T21·51+0000
commite97a429e73c8bce41a88527fdebce4f1373152a6 (patch)
tree27f72c3ded41aa4fe258833e041ca3e6e371858d /tvix/store/src/proto.rs
parentd62c7ddfda68f31857a8c8c6cc02a30b3743a4c4 (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 '')
-rw-r--r--tvix/store/src/proto.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/store/src/proto.rs b/tvix/store/src/proto.rs
index 40f1d1050c..74563db3fb 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),
 }