1
1
mirror of https://github.com/github/semantic.git synced 2025-01-03 04:51:57 +03:00

Remove a redundant quantifier.

This commit is contained in:
Rob Rix 2018-05-11 15:52:14 -04:00
parent 0867bb4dd8
commit e6c665ae36

View File

@ -154,7 +154,7 @@ markdownParser = AssignmentParser MarkdownParser Markdown.assignment
-- | A parser for producing specialized (tree-sitter) ASTs.
data SomeASTParser where
SomeASTParser :: forall grammar. (Bounded grammar, Enum grammar, Show grammar)
SomeASTParser :: (Bounded grammar, Enum grammar, Show grammar)
=> Parser (AST [] grammar)
-> SomeASTParser