We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de37a25 commit b4b69f9Copy full SHA for b4b69f9
types/src/parsing.rs
@@ -17,12 +17,12 @@ use traits::*;
17
/// Error context for `ParserErrors`
18
#[derive(Clone, Debug, Eq, PartialEq)]
19
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),
+ /// Static string added by the `context` function
+ Context(&'static str),
+ /// Indicates which character was expected by the `char` function
+ Char(char),
+ /// Error kind given by various nom parsers
+ Nom(ErrorKind),
26
}
27
28
/// Struct holding the errors stack
0 commit comments