From 25884ade58e3414f92a9a2cfd34f23d35748c35c Mon Sep 17 00:00:00 2001 From: Purposeful Programming Date: Sun, 18 Nov 2018 09:20:06 -0500 Subject: [PATCH] Add apostrophe to "let's" (#23761) --- guide/english/javascript/scopes/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/javascript/scopes/index.md b/guide/english/javascript/scopes/index.md index 7174909b19..58ca0b80a8 100644 --- a/guide/english/javascript/scopes/index.md +++ b/guide/english/javascript/scopes/index.md @@ -23,7 +23,7 @@ Before you type the first line of code in your program, a _global scope_ is crea In the example above, the variable `foo` is in the global scope of the program, while the variable `bar` is declared inside a function and is therefore **in the local scope of that function**. -Lets break down the example line by line. While you might be confused at this point, I promise you will have a much better understanding by the time you finish reading this. +Let's break down the example line by line. While you might be confused at this point, I promise you will have a much better understanding by the time you finish reading this. On line 1 we are declaring the variable `foo`. Nothing too fancy here. Lets call this a left-hand size (LHS) reference to `foo`, because we are assigning a value to `foo` and it's on the left-hand side of the `equal` sign.