From e06c9068e4b29305614d274d87b4847dab4866d8 Mon Sep 17 00:00:00 2001 From: Nalee Riddell <36767679+odax@users.noreply.github.com> Date: Tue, 16 Apr 2019 11:13:11 -0400 Subject: [PATCH] Update article.md --- 2-ui/5-loading/01-onload-ondomcontentloaded/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2-ui/5-loading/01-onload-ondomcontentloaded/article.md b/2-ui/5-loading/01-onload-ondomcontentloaded/article.md index db159015..06772873 100644 --- a/2-ui/5-loading/01-onload-ondomcontentloaded/article.md +++ b/2-ui/5-loading/01-onload-ondomcontentloaded/article.md @@ -84,7 +84,7 @@ So here we're talking about "regular" scripts, like ``, or ` External style sheets don't affect DOM, so `DOMContentLoaded` does not wait for them. -But there's a pitfall. Isf we have a script after the style, then that script must wait until the stylesheet loads: +But there's a pitfall. If we have a script after the style, then that script must wait until the stylesheet loads: ```html