From 1e5015107606890dde8b2ca61dd20f925c05c9b5 Mon Sep 17 00:00:00 2001 From: Ir1dXD Date: Wed, 9 Jan 2019 15:15:35 +0800 Subject: [PATCH] fix: fix typo --- 1-js/02-first-steps/03-strict-mode/article.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/1-js/02-first-steps/03-strict-mode/article.md b/1-js/02-first-steps/03-strict-mode/article.md index 808a4a855e..b794384769 100644 --- a/1-js/02-first-steps/03-strict-mode/article.md +++ b/1-js/02-first-steps/03-strict-mode/article.md @@ -24,8 +24,8 @@ 我们注意到 `"use strict"` 可以放在函数(大多数函数)而不是整个脚本的开头。那么严格模式仅在该函数中启用。但通常人们会将它用于整个脚本。 -````warn header="确保 \"use strict\" 出线在最顶部" -请确保 `"use strict"` 出线在脚本的最顶部,否则严格模式可能无法启用。 +````warn header="确保 \"use strict\" 出现在最顶部" +请确保 `"use strict"` 出现在脚本的最顶部,否则严格模式可能无法启用。 这里的严格模式就没有启用: