Update es6.md

This commit is contained in:
Benjamin 2015-07-27 09:24:44 +08:00
parent a57d0ea90d
commit 6d6368a0c9
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) {
// ...
}
```