From: Ian Jackson Date: Mon, 2 May 2022 08:53:45 +0000 (+0100) Subject: Fix an error message typo X-Git-Tag: otter-1.1.0~319 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=85127c1d16f52dd88678085e2e25828ef4c3b017;p=otter.git Fix an error message typo Signed-off-by: Ian Jackson --- 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,