Update article.md

"`async` attribute" -> "the `async` attribute"
This commit is contained in:
Peter Roche 2020-02-08 00:54:14 -07:00 committed by GitHub
parent 3fe2976963
commit 3fc0a5d591
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -272,7 +272,7 @@ When using modules, we should be aware that the HTML page shows up as it loads,
### Async works on inline scripts
For non-module scripts, `async` attribute only works on external scripts. Async scripts run immediately when ready, independently of other scripts or the HTML document.
For non-module scripts, the `async` attribute only works on external scripts. Async scripts run immediately when ready, independently of other scripts or the HTML document.
For module scripts, it works on inline scripts as well.