From 8d34119540cddc53011f6fbfbdd15df5f028d0ea Mon Sep 17 00:00:00 2001 From: Austin Brock Date: Wed, 28 Aug 2024 21:38:11 -0700 Subject: [PATCH] changed the words "speech marks" to quotation marks in tutorial --- .../learnrubyonline.org/en/Variables and Types.md | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/tutorials/learnrubyonline.org/en/Variables and Types.md b/tutorials/learnrubyonline.org/en/Variables and Types.md index 81b901488..058c25235 100644 --- a/tutorials/learnrubyonline.org/en/Variables and Types.md +++ b/tutorials/learnrubyonline.org/en/Variables and Types.md @@ -13,18 +13,21 @@ Once you have assigned a value to a variable, you can then refer back to it: There are three main types of variable: -- Strings (a collection of symbols inside speech marks) +- Strings (a collection of characters inside quotation ("" or '') marks) - Booleans (true or false) - Numbers (numeric values) - aString = "I'm a string!" - aBoolean = true - aNumber = 42 + my_string = "I'm a string!" + my_boolean = true + my_number = 42 Exercise -------- -Define three variables, `myString`, `myBoolean`, and `myNumber`, and set them to "I'm programming!", "true", and "5". +Define three variables, `my_string`, `my_boolean`, and `my_number`, and set them to "I'm programming!", "true", and "5". + +*** Omit the quotation marks on boolean & number + Tutorial Code -------------