gdritter repos s-cargot / dbba471
Typo fix in comments Getty Ritter 6 years ago
1 changed file(s) with 2 addition(s) and 2 deletion(s). Collapse all Expand all
4848 lineComment :: String -> Comment
4949 lineComment s = string s >> skipMany (noneOf "\n") >> return ()
5050
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
5353 -- everything until it finds the end delimiter. This does not
5454 -- consider nesting, so, for example, a comment created with
5555 --