Skip to content

Commit aeb92a9

Browse files
author
Nick Obedin
committed
* fixed typo
1 parent 94e78b4 commit aeb92a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Text/Parsing/Parser/String.purs

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ satisfy :: forall m. (Monad m) => (String -> Boolean) -> ParserT String m String
3737
satisfy f = try do
3838
c <- char
3939
if f c then return c
40-
else fail "Character did not satisfied predicate"
40+
else fail "Character did not satisfy predicate"
4141

4242
whiteSpace :: forall m. (Monad m) => ParserT String m String
4343
whiteSpace = do

0 commit comments

Comments
 (0)