diff --git a/1-js/11-async/08-async-await/article.md b/1-js/11-async/08-async-await/article.md index 0687ef2d..bde7c72e 100644 --- a/1-js/11-async/08-async-await/article.md +++ b/1-js/11-async/08-async-await/article.md @@ -140,7 +140,7 @@ But we can wrap it into an anonymous async function, like this: })(); ``` -P.S. The notable exception is V8 engine version 8.9+, where top-level await works in [modules](info:modules). +P.S. New feature: starting from V8 engine version 8.9+, top-level await works in [modules](info:modules). ```` ````smart header="`await` accepts \"thenables\""