got rid of extra keywords

This commit is contained in:
William Ball 2024-12-05 20:11:38 -08:00
parent e122a44a91
commit 254f5ff273

View file

@ -34,7 +34,7 @@ eat :: Text -> Parser ()
eat = void . lexeme . chunk
keywords :: [Text]
keywords = ["forall", "let", "in", "end", "fun", "def", "axiom", "section", "variable", "hypothesis", "variables", "hypotheses"]
keywords = ["forall", "let", "in", "end", "fun", "def", "axiom", "section", "variable", "hypothesis"]
pIdentifier :: Parser Text
pIdentifier = try $ label "identifier" $ lexeme $ do