summaryrefslogtreecommitdiffstats
path: root/src/error.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/error.rs')
-rw-r--r--src/error.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/error.rs b/src/error.rs
index 2ed9bd5..af4dfd5 100644
--- a/src/error.rs
+++ b/src/error.rs
@@ -9,7 +9,6 @@
/// Failure error kind type, defining error messages
#[derive(Debug, Clone, Eq, PartialEq, Fail)]
pub enum ErrorKind {
-
/// Error kind indicating that the JSON parser failed
#[fail(display = "Failed to create a Task from JSON")]
ParserError,
@@ -24,6 +23,5 @@ pub enum ErrorKind {
/// Error kind indicating that a conversion to JSON failed
#[fail(display = "A Task could not be converted to JSON")]
- SerializeError
+ SerializeError,
}
-