From a2283bf3dc802188c8ee2c64324ca85eb3204850 Mon Sep 17 00:00:00 2001 From: Garrit Franke Date: Sat, 20 Feb 2021 14:19:01 +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 2b112d3..9831548 100644 --- a/src/parser/rules.rs +++ b/src/parser/rules.rs @@ -345,7 +345,7 @@ impl Parser { if self.peek_token(TokenKind::Dot).is_ok() { self.parse_field_access(expr) } else { - Ok(expr) + Ok(expr) } }