From 98d1dc964581bf21a37d5c1133645695f1b2c1f4 Mon Sep 17 00:00:00 2001 From: youngjin-kimY <11kimyj@gmail.com> Date: Thu, 29 Oct 2020 19:55:59 +0900 Subject: [PATCH] modify typo --- 2-ui/5-loading/02-script-async-defer/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2-ui/5-loading/02-script-async-defer/article.md b/2-ui/5-loading/02-script-async-defer/article.md index 24af956d..45f507d7 100644 --- a/2-ui/5-loading/02-script-async-defer/article.md +++ b/2-ui/5-loading/02-script-async-defer/article.md @@ -83,7 +83,7 @@ Let's say, we have two deferred scripts: the `long.js` and then `small.js`: Browsers scan the page for scripts and download them in parallel, to improve performance. So in the example above both scripts download in parallel. The `small.js` probably finishes first. -...But the `defer` atribute, besides telling the browser "not to block", ensures that the relative order is kept. So even though `small.js` loads first, it still waits and runs after `long.js` executes. +...But the `defer` attribute, besides telling the browser "not to block", ensures that the relative order is kept. So even though `small.js` loads first, it still waits and runs after `long.js` executes. That may be important for cases when we need to load a JavaScript library and then a script that depends on it.