Update article.md

This commit is contained in:
Nalee Riddell 2019-04-16 11:13:11 -04:00 committed by GitHub
parent d50fff0a13
commit e06c9068e4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -84,7 +84,7 @@ So here we're talking about "regular" scripts, like `<script>...</script>`, 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
<link type="text/css" rel="stylesheet" href="style.css">