Skip to content

Commit

Permalink
rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Keruspe committed Dec 9, 2024
1 parent de37a25 commit b4b69f9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions types/src/parsing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ use traits::*;
/// Error context for `ParserErrors`
#[derive(Clone, Debug, Eq, PartialEq)]
enum VerboseErrorKind {
/// 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),
/// 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),
}

/// Struct holding the errors stack
Expand Down

0 comments on commit b4b69f9

Please sign in to comment.