From 94a3fff387181a6e7827acff066509d1f51ff378 Mon Sep 17 00:00:00 2001 From: Vadim Strogonov <96520772+Rattlehead90@users.noreply.github.com> Date: Tue, 19 Jul 2022 21:03:34 +0200 Subject: [PATCH] Fix a typo --- source/07-variables/02-right_goes_first.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.