diff options
Diffstat (limited to 'files/zh-cn/web/javascript/reference/global_objects/promise/race/index.html')
-rw-r--r-- | files/zh-cn/web/javascript/reference/global_objects/promise/race/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-cn/web/javascript/reference/global_objects/promise/race/index.html b/files/zh-cn/web/javascript/reference/global_objects/promise/race/index.html index ff251633c0..fab2fd64a9 100644 --- a/files/zh-cn/web/javascript/reference/global_objects/promise/race/index.html +++ b/files/zh-cn/web/javascript/reference/global_objects/promise/race/index.html @@ -59,7 +59,7 @@ setTimeout(function(){ // the stack is now empty // Promise { <state>: "fulfilled", <value>: 33 }</pre> -<h3 id="使用_Promise.race_–_setTimeout_的示例"><font face="Open Sans, sans-serif">使用 </font>Promise.race – setTimeout 的示例</h3> +<h3 id="使用_Promise.race_–_setTimeout_的示例">使用 Promise.race – setTimeout 的示例</h3> <pre class="brush: js notranslate">var p1 = new Promise(function(resolve, reject) { setTimeout(resolve, 500, "one"); |