Merge pull request #26 from joelwilliamson/patch-1

Fixed type of argument to char in examples
This commit is contained in:
Antoine Latter 2015-03-07 14:54:22 -06:00
commit fbf9840faf

View File

@ -64,12 +64,12 @@ data GenLanguageDef s u m
nestedComments :: Bool,
-- | This parser should accept any start characters of identifiers. For
-- example @letter \<|> char \"_\"@.
-- example @letter \<|> char \'_\'@.
identStart :: ParsecT s u m Char,
-- | This parser should accept any legal tail characters of identifiers.
-- For example @alphaNum \<|> char \"_\"@.
-- For example @alphaNum \<|> char \'_\'@.
identLetter :: ParsecT s u m Char,