Merge pull request #16 from BenderV/patch-1

Update es6.md
This commit is contained in:
Rico Sta. Cruz 2015-07-27 14:11:14 +08:00
commit 18618d1a57
1 changed files with 1 additions and 1 deletions

2
es6.md
View File

@ -263,7 +263,7 @@ numbers.map(n => n * 2)
For iterating through generators and arrays.
```js
for (var i of iterable) {
for (let i of iterable) {
// ...
}
```