1
0
mirror of https://github.com/lise-henry/crowbook synced 2024-09-23 06:01:02 +02:00

Fix code formatting

This commit is contained in:
Elisabeth Henry 2016-05-04 19:13:44 +02:00
parent af56d6cedf
commit cb299a98af

View File

@ -42,7 +42,8 @@ impl error::Error for Error {
fn description(&self) -> &str {
match *self {
Error::ConfigParser(ref s, _) => s,
Error::Parser(ref s) | Error::Zipper(ref s) | Error::BookOption(ref s) | Error::InvalidOption(ref s) | Error::Render(ref s) => s,
Error::Parser(ref s) | Error::Zipper(ref s) | Error::BookOption(ref s)
| Error::InvalidOption(ref s) | Error::Render(ref s) => s,
Error::FileNotFound(_) => "File not found",
}
}