From 2893f50386a594527bcdd0dee2d5f57c6a02afbd Mon Sep 17 00:00:00 2001 From: katiesavage Date: Fri, 29 Apr 2022 16:45:10 -0700 Subject: [PATCH] fixed bool chart --- 2-csharp/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/2-csharp/README.md b/2-csharp/README.md index 5c20db9..3c6aa59 100644 --- a/2-csharp/README.md +++ b/2-csharp/README.md @@ -83,14 +83,14 @@ In this example, we use parentheses pass a string as a parameter to *Console.Wri ## Boolean expressions We use booleans to compare two or more things. - | symbol | what it does | - | --- | ------ | - | < | less than | - | > | greater than | - | <= | less than or equal | - | >= | greater than or equal | - | == | equal | - | != | not equal | + | symbol | what it does | + | --- | ---------- | + | < | less than | + | > | greater than | + | <= | less than or equal | + | >= | greater than or equal | + | == | equal | + | != | not equal | ---