README.md: minor grammar fix

This commit is contained in:
Ashish Agarwal 2016-04-06 17:27:28 -04:00 committed by Jeremie Dimino
parent d259734a86
commit 5b78706d34

View File

@ -48,7 +48,7 @@ val both : 'a t -> 'b t -> ('a * 'b) t
### Match statements
We found that this form was quite useful for match statements as
well. So for convenience ppx\_let also accept `%bind` and `%map` on
well. So for convenience ppx\_let also accepts `%bind` and `%map` on
the `match` keyword. Morally `match%bind expr with cases` is seen as
`let%bind x = expr in match x with cases`.