Typo fix in comments
Getty Ritter
7 years ago
48 | 48 | lineComment :: String -> Comment |
49 | 49 | lineComment s = string s >> skipMany (noneOf "\n") >> return () |
50 | 50 | |
51 | -- | Given two strings, a begin and an end delimeter, produce a | |
52 | -- parser that matches the beginning delimeter and then ignores | |
51 | -- | Given two strings, a begin and an end delimiter, produce a | |
52 | -- parser that matches the beginning delimiter and then ignores | |
53 | 53 | -- everything until it finds the end delimiter. This does not |
54 | 54 | -- consider nesting, so, for example, a comment created with |
55 | 55 | -- |