Skip to content

Commit 552d2a2

Browse files
committed
Remove redundant parentheses.
1 parent 51d45c4 commit 552d2a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Text/Parsing/Parser/String.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ satisfy :: forall m. (Monad m) => (Char -> Boolean) -> ParserT String m Char
4848
satisfy f = try do
4949
c <- anyChar
5050
if f c then return c
51-
else fail $ "Character '" ++ (fromChar c) ++ "' did not satisfy predicate"
51+
else fail $ "Character '" ++ fromChar c ++ "' did not satisfy predicate"
5252

5353
-- | Match the specified character
5454
char :: forall m. (Monad m) => Char -> ParserT String m Char

0 commit comments

Comments
 (0)