From 85127c1d16f52dd88678085e2e25828ef4c3b017 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Mon, 2 May 2022 09:53:45 +0100 Subject: [PATCH] Fix an error message typo Signed-off-by: Ian Jackson --- src/spec.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/spec.rs b/src/spec.rs index 669623ca..73df6f59 100644 --- a/src/spec.rs +++ b/src/spec.rs @@ -68,7 +68,7 @@ pub enum SpecError { #[error("internal error: {0}")] InternalError(String), #[error("specified position is off table")] PosOffTable, #[error("library not found")] LibraryNotFound, - #[error("item not found inlibrary")] LibraryItemNotFound(ItemSpec), + #[error("item not found in library")] LibraryItemNotFound(ItemSpec), #[error("acl contains invalid account glob")] AclInvalidAccountGlob, #[error("acl entry allow/deny overlap")] AclEntryOverlappingAllowDeny, #[error("inconsistent piece count")] InconsistentPieceCount, -- 2.30.2