Skip to content

Commit 3fe2976

Browse files
authored
Update article.md
"be aware that HTML-page" -> "be aware that the HTML page"
1 parent c3213d3 commit 3fe2976

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/13-modules/01-modules-intro/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ Please note: the second script actually runs before the first! So we'll see `und
268268
269269
That's because modules are deferred, so we wait for the document to be processed. The regular script runs immediately, so we see its output first.
270270
271-
When using modules, we should be aware that HTML-page shows up as it loads, and JavaScript modules run after that, so the user may see the page before the JavaScript application is ready. Some functionality may not work yet. We should put "loading indicators", or otherwise ensure that the visitor won't be confused by that.
271+
When using modules, we should be aware that the HTML page shows up as it loads, and JavaScript modules run after that, so the user may see the page before the JavaScript application is ready. Some functionality may not work yet. We should put "loading indicators", or otherwise ensure that the visitor won't be confused by that.
272272
273273
### Async works on inline scripts
274274

0 commit comments

Comments
 (0)