From a68466ca9ea971457cf435375fdacd1dded90ba3 Mon Sep 17 00:00:00 2001 From: Garrit Franke Date: Sat, 20 Feb 2021 13:55:11 +0100 Subject: [PATCH] chore: fix formatting --- src/parser/rules.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parser/rules.rs b/src/parser/rules.rs index ce5df54..c21a1fb 100644 --- a/src/parser/rules.rs +++ b/src/parser/rules.rs @@ -250,7 +250,7 @@ impl Parser { let expr = Expression::FunctionCall(name, args); match self.peek()?.kind { TokenKind::Dot => self.parse_field_access(expr), - _ => Ok(expr) + _ => Ok(expr), } }