fix(tvix/store/src/proto/mod.rs): fix error string

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>
This commit is contained in:
Florian Klink 2023-05-17 15:02:50 +03:00 committed by clbot
parent a4d740af2e
commit a6c7869393

View file

@ -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.