From e0326b1716cccd037d2fa2cbfb342f4440b68908 Mon Sep 17 00:00:00 2001 From: timvisee Date: Tue, 5 Jun 2018 16:15:02 +0200 Subject: [PATCH] Lowercase all errors properly --- src/history.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/history.rs b/src/history.rs index 4ee3f2f..fbef714 100644 --- a/src/history.rs +++ b/src/history.rs @@ -272,11 +272,11 @@ impl From for Error { #[derive(Debug, Fail)] pub enum LoadError { /// Failed to read the file contents from the given file. - #[fail(display = "Failed to read from the history file")] + #[fail(display = "failed to read from the history file")] Read(#[cause] IoError), /// Failed to parse the loaded file. - #[fail(display = "Failed to parse the file contents")] + #[fail(display = "failed to parse the file contents")] Parse(#[cause] DeError), }