mirror of
https://github.com/mrkkrp/megaparsec.git
synced 2024-11-23 10:23:39 +03:00
Fix attoparsec link, link to parsec page in the readme
[skip ci]
This commit is contained in:
parent
2a86b4f566
commit
e64a62da32
12
README.md
12
README.md
@ -181,9 +181,10 @@ let's compare Megaparsec with some of them.
|
||||
|
||||
### Megaparsec vs Attoparsec
|
||||
|
||||
[Attoparsec](https://github.com/bos/attoparsec) is another prominent Haskell
|
||||
library for parsing. Although the both libraries deal with parsing, it's
|
||||
usually easy to decide which you will need in particular project:
|
||||
[Attoparsec](https://hackage.haskell.org/package/attoparsec) is another
|
||||
prominent Haskell library for parsing. Although the both libraries deal with
|
||||
parsing, it's usually easy to decide which you will need in particular
|
||||
project:
|
||||
|
||||
* *Attoparsec* is sometimes faster but not that feature-rich. It should be
|
||||
used when you want to process large amounts of data where performance
|
||||
@ -204,8 +205,9 @@ so it can be used even to parse low-level binary formats.
|
||||
|
||||
### Megaparsec vs Parsec
|
||||
|
||||
Since Megaparsec is a fork of Parsec, we are bound to list the main
|
||||
differences between the two libraries:
|
||||
Since Megaparsec is a fork of
|
||||
[Parsec](https://hackage.haskell.org/package/parsec), we are bound to list
|
||||
the main differences between the two libraries:
|
||||
|
||||
* Better error messages. We test our error messages using numerous
|
||||
QuickCheck (generative) tests. Good error messages are just as important
|
||||
|
Loading…
Reference in New Issue
Block a user