From 677cd6633d3070cb8ef3bc5c06ce5d1254e24316 Mon Sep 17 00:00:00 2001 From: Brent Guffens Date: Thu, 18 Jan 2018 18:05:58 +0100 Subject: [PATCH] Typo --- 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 bbdec8cb..b1ac4ccd 100644 --- a/1-js/02-first-steps/14-function-basics/article.md +++ b/1-js/02-first-steps/14-function-basics/article.md @@ -119,7 +119,7 @@ function showMessage() { alert(message); } -// the function will create and use it's own userName +// the function will create and use its own userName showMessage(); alert( userName ); // *!*John*/!*, unchanged, the function did not access the outer variable