From abbf5514e8301acc88b3c34510cab07f2a4e7a10 Mon Sep 17 00:00:00 2001 From: Raptorox <70806316+Raptorox@users.noreply.github.com> Date: Thu, 21 May 2026 17:29:30 +0200 Subject: [PATCH] clippy --- src/parser.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parser.rs b/src/parser.rs index 1e70723..eb8937a 100644 --- a/src/parser.rs +++ b/src/parser.rs @@ -89,7 +89,7 @@ impl Parser { } pub fn parse(&mut self) -> Expr { - if self.peek() == None {return Expr::EOL} + if self.peek().is_none() {return Expr::EOL} self.parse_expr(0) } } \ No newline at end of file