diff --git a/source/07-variables/02-right_goes_first.md b/source/07-variables/02-right_goes_first.md index 713e518..517d6d8 100644 --- a/source/07-variables/02-right_goes_first.md +++ b/source/07-variables/02-right_goes_first.md @@ -21,7 +21,7 @@ puts number ``` When Ruby looks at the first line `number = 2 + 3 * 4` it notices that this is -using the assignment operator `=`. Therefor, before it can assign the name +using the assignment operator `=`. Therefore, before it can assign the name `number` to the "thing" (object) on the right ... it first needs to know what that thing is.