From e0c3de288e284d4935524e01f3462ca8ddc1cd31 Mon Sep 17 00:00:00 2001 From: Bradley Bickford Date: Thu, 15 Dec 2022 21:33:05 -0500 Subject: [PATCH] Fix formatting issue --- 4 - If Else and Logical Operators/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/4 - If Else and Logical Operators/README.md b/4 - If Else and Logical Operators/README.md index f7b0179..20d7b6f 100644 --- a/4 - If Else and Logical Operators/README.md +++ b/4 - If Else and Logical Operators/README.md @@ -48,8 +48,8 @@ Depends on what you're trying to do. There's lots of different options, but the - != - Is something not equal to something else - < - Is the left value less than the right value - <= - Is the left value less than or equal to the right value -- > - Is the left value greater than the right value -- >= - Is the left value greater than or equal to the right value +- \> - Is the left value greater than the right value +- \>= - Is the left value greater than or equal to the right value Sometimes conditions are as simple as, is this less than that, or is this equal to that. Sometimes you need to check multiple things! This is where AND and OR come into play. These are logical operators that can "combine" the results of different questions (like is equal to) into a single true false value.