Skip to content

Commit 2e23f8c

Browse files
committed
Documentation fixup
1 parent 736f863 commit 2e23f8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ There are other `String` parsers in the module `Text.Parsing.Parser.Token`, for
8383

8484
### Parser combinators
8585

86-
A parser combinator is a function which takes a parser as an argument and returns a new parser. The `many` combinator, for example, will repeat a parser as many times as it can. So the parser `many letter` will have type `Parser String (Array Char)`. Running that parser
86+
A parser combinator is a function which takes a parser as an argument and returns a new parser. The `many` combinator, for example, will repeat a parser as many times as it can. So the parser `many letter` will have type `Parser String (Array Boolean)`. Running that parser
8787

8888
```purescript
8989
runParser "aBabaB" (many ayebee)

0 commit comments

Comments
 (0)