We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51d45c4 commit 552d2a2Copy full SHA for 552d2a2
src/Text/Parsing/Parser/String.purs
@@ -48,7 +48,7 @@ satisfy :: forall m. (Monad m) => (Char -> Boolean) -> ParserT String m Char
48
satisfy f = try do
49
c <- anyChar
50
if f c then return c
51
- else fail $ "Character '" ++ (fromChar c) ++ "' did not satisfy predicate"
+ else fail $ "Character '" ++ fromChar c ++ "' did not satisfy predicate"
52
53
-- | Match the specified character
54
char :: forall m. (Monad m) => Char -> ParserT String m Char
0 commit comments