From 0213ffc1abf4c5d3fc0e575a8df3671bc71c4c56 Mon Sep 17 00:00:00 2001 From: Open Next Date: Wed, 13 Dec 2017 15:33:14 +0800 Subject: [PATCH] =?UTF-8?q?docs(style):=20modify=20the=20bold=20format=20o?= =?UTF-8?q?f=20=20-=EF=BC=883=EF=BC=89yield?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit remove needless space char in **(3)yield* ** --- docs/iterator.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/iterator.md b/docs/iterator.md index 67b883c..60d193d 100644 --- a/docs/iterator.md +++ b/docs/iterator.md @@ -363,7 +363,7 @@ let arr = ['b', 'c']; let arr = [...iterable]; ``` -**(3)yield\* ** +**(3)yield\*** `yield*`后面跟的是一个可遍历的结构,它会调用该结构的遍历器接口。