From 1dc1e6366c4062a2c2efb6e2b92a793e9da0c724 Mon Sep 17 00:00:00 2001 From: "Violet.Lee" Date: Sun, 16 Jun 2019 00:15:51 +0900 Subject: [PATCH] Fix typo build-in --> built-in --- 1-js/06-advanced-functions/05-global-object/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/06-advanced-functions/05-global-object/article.md b/1-js/06-advanced-functions/05-global-object/article.md index a05157a5..742132aa 100644 --- a/1-js/06-advanced-functions/05-global-object/article.md +++ b/1-js/06-advanced-functions/05-global-object/article.md @@ -58,7 +58,7 @@ That said, using global variables is generally discouraged. There should be as f We can test the global object for support of modern language features. -For instance, test if a build-in `Promise` object exists (it doesn't in really old browsers): +For instance, test if a built-in `Promise` object exists (it doesn't in really old browsers): ```js run if (!window.Promise) { alert("Your browser is really old!");