Lowercase all errors properly

This commit is contained in:
timvisee 2018-06-05 16:15:02 +02:00
parent b98c2b3f28
commit e0326b1716
No known key found for this signature in database
GPG key ID: 109CBA0BF74036C2

View file

@ -272,11 +272,11 @@ impl From<SaveError> 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),
}