aboutsummaryrefslogtreecommitdiff
path: root/files/zh-tw/web/javascript/guide/iterators_and_generators
diff options
context:
space:
mode:
Diffstat (limited to 'files/zh-tw/web/javascript/guide/iterators_and_generators')
-rw-r--r--files/zh-tw/web/javascript/guide/iterators_and_generators/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/files/zh-tw/web/javascript/guide/iterators_and_generators/index.html b/files/zh-tw/web/javascript/guide/iterators_and_generators/index.html
index 8c53a56eb2..5d5fb327c6 100644
--- a/files/zh-tw/web/javascript/guide/iterators_and_generators/index.html
+++ b/files/zh-tw/web/javascript/guide/iterators_and_generators/index.html
@@ -70,8 +70,8 @@ console.log("Iterated over sequence of size: ", result.value); // 5
</pre>
-<div class="note">
-<p>It is not possible to know reflectively whether a particular object is an iterator. If you need to do this, use <a href="#Iterables">Iterables</a>.</p>
+<div class="notecard note">
+<p><strong>Note:</strong> It is not possible to know reflectively whether a particular object is an iterator. If you need to do this, use <a href="#Iterables">Iterables</a>.</p>
</div>
<h2 id="Generator_functions">Generator functions</h2>