Skip to content

Commit 1a0eaa5

Browse files
committed
docs(iterator): fixed #1093
1 parent a82ed10 commit 1a0eaa5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/iterator.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ for (var value of range(0, 3)) {
191191

192192
上面代码是一个类部署 Iterator 接口的写法。`Symbol.iterator`属性对应一个函数,执行后返回当前对象的遍历器对象。
193193

194-
下面是通过遍历器实现指针结构的例子
194+
下面是通过遍历器实现“链表”结构的例子
195195

196196
```javascript
197197
function Obj(value) {

0 commit comments

Comments
 (0)