Add apostrophe to "let's" (#23761)

This commit is contained in:
Purposeful Programming
2018-11-18 09:20:06 -05:00
committed by Aditya
parent d6af9f2a82
commit 25884ade58

View File

@ -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.