fix(iterator): fix typo

This commit is contained in:
ruanyf
2016-11-03 08:14:37 +08:00
parent e0f36e61fc
commit d50aa29a21
+1 -1
View File
@@ -497,7 +497,7 @@ function readLinesSync(file) {
```javascript
for (let line of readLinesSync(fileName)) {
console.log(x);
console.log(line);
break;
}
```