diff options
author | Florian Klink <flokli@flokli.de> | 2023-05-17T12·02+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-05-17T13·06+0000 |
commit | a6c7869393930c667e837b99cd36e0d8e9eb2498 (patch) | |
tree | 3b2d8d80e09b2b932dde6e3ce05d454b1d04d67a /tvix/store | |
parent | a4d740af2ec82d24f513ca060ada07c8842ab764 (diff) |
fix(tvix/store/src/proto/mod.rs): fix error string r/6148
This was missed while renaming NixPath to StorePath. Change-Id: Ibcc929c43b111e4370e8222c1dd86d403548367f Reviewed-on: https://cl.tvl.fyi/c/depot/+/8577 Reviewed-by: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI Autosubmit: flokli <flokli@flokli.de>
Diffstat (limited to 'tvix/store')
-rw-r--r-- | tvix/store/src/proto/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/store/src/proto/mod.rs b/tvix/store/src/proto/mod.rs index 62741a3ad508..528d0fb061fd 100644 --- a/tvix/store/src/proto/mod.rs +++ b/tvix/store/src/proto/mod.rs @@ -53,7 +53,7 @@ pub enum ValidatePathInfoError { NoNodePresent(), /// Invalid node name encountered. - #[error("Failed to parse {0} as NixPath: {1}")] + #[error("Failed to parse {0} as StorePath: {1}")] InvalidNodeName(String, store_path::Error), /// The digest the (root) node refers to has invalid length. |