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