From 5e00f6df0bb145c662af8533b8eb790ba945145a Mon Sep 17 00:00:00 2001 From: ThomasChang7 Date: Fri, 7 Apr 2017 21:17:03 -0400 Subject: [PATCH] typo on the word associated --- 1-js/02-first-steps/04-variables/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/04-variables/article.md b/1-js/02-first-steps/04-variables/article.md index 6c2fa0f9..2384d9b3 100644 --- a/1-js/02-first-steps/04-variables/article.md +++ b/1-js/02-first-steps/04-variables/article.md @@ -28,7 +28,7 @@ message = 'Hello'; // store the string */!* ``` -The string is now saved into the memory area assosiated with the variable. We can access it using the variable name: +The string is now saved into the memory area associated with the variable. We can access it using the variable name: ```js run let message;