From b4b69f92cbb2461c9b6431baf36f9bbd989cf19b Mon Sep 17 00:00:00 2001 From: Marc-Antoine Perennou Date: Mon, 9 Dec 2024 10:12:54 +0100 Subject: [PATCH] rustfmt --- types/src/parsing.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/types/src/parsing.rs b/types/src/parsing.rs index fc5e1d1..18c6c03 100644 --- a/types/src/parsing.rs +++ b/types/src/parsing.rs @@ -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