Update ‘CHANGELOG.md’ and ‘README.md’

This commit is contained in:
mrkkrp 2016-02-12 22:12:30 +06:00
parent 3edbe9f54a
commit 4c5aae7098
2 changed files with 8 additions and 0 deletions

View File

@ -11,6 +11,10 @@
* The `count` combinator now works with `Applicative` instances (previously
it worked only with instances of `Alternative`). It's now also faster.
* New primitive parser `withRecovery` added. The parser allows to recover
from parse errors “on-the-fly” and continue parsing. Once parsing is
finished, several parse errors may be reported or ignored altogether.
## Megaparsec 4.3.0
* Canonicalized `Applicative`/`Monad` instances. Thanks to Herbert Valerio

View File

@ -76,6 +76,10 @@ via combination of these primitives:
* `notFollowedBy` succeeds when its argument fails, it does not consume
input.
* `withRecovery` allows to recover from parse errors “on-the-fly” and
continue parsing. Once parsing is finished, several parse errors may be
reported or ignored altogether.
* `eof` only succeeds at the end of input.
* `token` is used to parse single token.