Skip to content

Commit 60b1bd3

Browse files
Fix docs mentioning location of fromCharArray (#80)
Fix docs mentioning location of String fromCharArray function.
2 parents 53d6e44 + f557457 commit 60b1bd3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Text/Parsing/Parser/Combinators.purs

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
-- | ```
1313
-- |
1414
-- | Because Strings are not Char Arrays in PureScript `many` and `some` on Char Parsers need to
15-
-- | be used in conjunction with `Data.String.fromCharArray` to achieve "Parsec-like" results.
15+
-- | be used in conjunction with `Data.String.CodeUnits.fromCharArray` to achieve "Parsec-like" results.
1616
-- |
1717
-- | ```purescript
1818
-- | Text.Parsec.many (char 'x') <=> fromCharArray <$> Data.Array.many (char 'x')

0 commit comments

Comments
 (0)