Merge pull request #605 from jsonkao/patch-2

Update article.md
This commit is contained in:
Ilya Kantor 2018-11-09 10:25:05 +03:00 committed by GitHub
commit 6dd11633bd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -47,7 +47,7 @@ let value = await promise;
The keyword `await` makes JavaScript wait until that promise settles and returns its result.
Here's example with a promise that resolves in 1 second:
Here's an example with a promise that resolves in 1 second:
```js run
async function f() {