Merge pull request #567 from baooab/patch-1

docs:Fix typo
This commit is contained in:
Ruan YiFeng
2017-12-26 20:41:17 -06:00
committed by GitHub
+3 -3
View File
@@ -69,9 +69,9 @@ function makeIterator(array) {
```javascript
var it = idMaker();
it.next().value // '0'
it.next().value // '1'
it.next().value // '2'
it.next().value // 0
it.next().value // 1
it.next().value // 2
// ...
function idMaker() {