aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCody <cody@codyq.dev>2023-04-08 14:47:57 -0500
committerCody <cody@codyq.dev>2023-04-08 14:47:57 -0500
commita990b1f869385a2cf9da38176b709261bd2b30cf (patch)
tree52e663b2ea25c883f0d570604ae6ff73f9486276
parentac7d2a187bff55ddda5e22e1cbda1090ff8d0a1f (diff)
downloadsloth-a990b1f869385a2cf9da38176b709261bd2b30cf.tar.gz
Don't know why this didn't get added
-rw-r--r--documentation/order.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation/order.txt b/documentation/order.txt
index 8727306..ba22100 100644
--- a/documentation/order.txt
+++ b/documentation/order.txt
@@ -8,11 +8,11 @@
| multiplicative | * / % | Left |
| additive | + - | Left |
| bitwise shift | << >> | Left |
-| comparison | < > <= >= | Left |
-| equality | == != | Left |
| bitwise and | & | Left |
| bitwise xor | ^ | Left |
| bitwise or | | | Left |
+| comparison | < > <= >= | Left |
+| equality | == != | Left |
| logical and | && | Left |
| logical or | || | Left |