Skip to content

Commit b4b69f9

Browse files
committed
rustfmt
1 parent de37a25 commit b4b69f9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

types/src/parsing.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ use traits::*;
1717
/// Error context for `ParserErrors`
1818
#[derive(Clone, Debug, Eq, PartialEq)]
1919
enum VerboseErrorKind {
20-
/// Static string added by the `context` function
21-
Context(&'static str),
22-
/// Indicates which character was expected by the `char` function
23-
Char(char),
24-
/// Error kind given by various nom parsers
25-
Nom(ErrorKind),
20+
/// Static string added by the `context` function
21+
Context(&'static str),
22+
/// Indicates which character was expected by the `char` function
23+
Char(char),
24+
/// Error kind given by various nom parsers
25+
Nom(ErrorKind),
2626
}
2727

2828
/// Struct holding the errors stack

0 commit comments

Comments
 (0)