From 5b78706d342fec381ac3b0695180541b6a1c4fd1 Mon Sep 17 00:00:00 2001 From: Ashish Agarwal Date: Wed, 6 Apr 2016 17:27:28 -0400 Subject: [PATCH] README.md: minor grammar fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2637156fc..7e50b0323 100644 --- a/README.md +++ b/README.md @@ -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`.