got rid of extra keywords
This commit is contained in:
parent
e122a44a91
commit
254f5ff273
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue