Skip to content

Commit 7d030c6

Browse files
committed
docs(async): edit top-level await
1 parent 7d22df8 commit 7d030c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/async.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -733,7 +733,7 @@ const data = await fetch('https://api.example.com');
733733

734734
上面代码中,`await`命令独立使用,没有放在 async 函数里面,就会报错。
735735

736-
[ES2022](https://github.com/tc39/proposal-top-level-await) 开始,允许在模块的顶层独立使用`await`命令,使得上面那行代码不会报错了。它的主要目的,是使用`await`解决模块异步加载的问题。
736+
[ES2022](https://github.com/tc39/proposal-top-level-await) 开始,允许在模块的顶层独立使用`await`命令,使得上面那行代码不会报错了。它的主要目的是使用`await`解决模块异步加载的问题。
737737

738738
```javascript
739739
// awaiting.js

0 commit comments

Comments
 (0)