From ebff87c733347782a3c97d959ef5d2957d4ef162 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juhani=20Krekel=C3=A4?= Date: Sun, 28 May 2023 23:44:49 +0300 Subject: [PATCH] Remove extraneus comma in a match statement --- src/parse.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parse.rs b/src/parse.rs index 84cea02..8a9a958 100644 --- a/src/parse.rs +++ b/src/parse.rs @@ -44,7 +44,7 @@ pub fn parse(input: &str) -> Result, ParseError> { } match state { - Expect::Number => {}, + Expect::Number => {} Expect::Unit => { return Err(ParseError::ExpectedUnit); }