From 25e062c11d85482eb4b374718652f60e70d3cfe8 Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Fri, 10 Oct 2014 11:07:27 +1100 Subject: [PATCH] README differences grammar, again --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fe7ad40153..e172a8305f 100644 --- a/README.md +++ b/README.md @@ -273,7 +273,7 @@ For example, given the following array comprehension: var seattlers = [for (c of customers) if (c.city == "Seattle") { name: c.name, age: c.age }]; ``` -Which is generated to the following with 6to5: +is generated to the following with 6to5: ```javascript var seattlers = customers.filter(function (c) {