Skip to content

Commit

Permalink
Format: remove a redundant parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
FPtje committed Jun 16, 2024
1 parent 3a77418 commit 37ef20d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/GLua/Lexer.hs
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ parseKeyword tok str =
try
( do
_ <- string str
(\s -> Identifier (str ++ s)) <$> many1 (pIdentifierCharacter)
(\s -> Identifier (str ++ s)) <$> many1 pIdentifierCharacter
<|> return tok
<?> "Keyword "
++ str
Expand Down

0 comments on commit 37ef20d

Please sign in to comment.