Merge pull request #308 from MyOde/patch-1

Readme Typo fix
This commit is contained in:
Huw Campbell 2018-07-10 12:10:42 +10:00 committed by GitHub
commit 06ccfc3449
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -475,8 +475,8 @@ usually used as one side of an alternative.
Another interesting use for the `flag'` builder is to count the
number of instances on the command line, for example, verbosity
settings could be specified on a scale; the following parser with
count the number of of instances of `-v` on the command line.
settings could be specified on a scale; the following parser will
count the number of instances of `-v` on the command line.
```haskell
length <$> many (flag' () (short 'v'))