From ee6105dd9146600462b5249e726d6b478b891baa Mon Sep 17 00:00:00 2001 From: Erin Date: Mon, 18 Apr 2022 21:43:32 +0200 Subject: [PATCH] chore: fmt --- ablescript/src/parser.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ablescript/src/parser.rs b/ablescript/src/parser.rs index 875cb6ec..5fbcb802 100644 --- a/ablescript/src/parser.rs +++ b/ablescript/src/parser.rs @@ -66,7 +66,10 @@ impl<'source> Parser<'source> { let start = self.lexer.span().start; match token { - Token::Unless => Ok(Spanned::new(self.unless_flow()?, start..self.lexer.span().end)), + Token::Unless => Ok(Spanned::new( + self.unless_flow()?, + start..self.lexer.span().end, + )), Token::Functio => Ok(Spanned::new( self.functio_flow()?, start..self.lexer.span().end,