From fce96390963857d2ec47bf92d4ecd2b29e1d6677 Mon Sep 17 00:00:00 2001 From: Linda Zanchi Date: Sun, 27 Jan 2019 10:40:51 -0500 Subject: [PATCH] Update /14-function-basics/article.md Type line 131, sentence 2; corrected. FYI same line makes no sense in English, I cannot offer an edit for meaning intended. --- 1-js/02-first-steps/14-function-basics/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/14-function-basics/article.md b/1-js/02-first-steps/14-function-basics/article.md index 26e8e77c..fcae4845 100644 --- a/1-js/02-first-steps/14-function-basics/article.md +++ b/1-js/02-first-steps/14-function-basics/article.md @@ -128,7 +128,7 @@ Variables declared outside of any function, such as the outer `userName` in the Global variables are visible from any function (unless shadowed by locals). -Usually, a function declares all variables specific to its task. Global variables only store project-level data, so when it's important that these variables are accesible from anywhere. Modern code has few or no globals. Most variables reside in their functions. +Usually, a function declares all variables specific to its task. Global variables only store project-level data, so when it's important that these variables are accessible from anywhere. Modern code has few or no globals. Most variables reside in their functions. ``` ## Parameters