README differences grammar, again

This commit is contained in:
Sebastian McKenzie 2014-10-10 11:07:27 +11:00
parent 5d056c625a
commit 25e062c11d

View File

@ -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) {