Fix formatting issue

This commit is contained in:
Bradley Bickford 2022-12-15 21:33:05 -05:00
parent a486b967c2
commit e0c3de288e

View File

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