From 010541f90ca6286d9d962082bd38a47108df26d3 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Thu, 29 Feb 2024 18:54:05 -0500 Subject: [PATCH] aaaa --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a983bfb..1133dbc 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ All `matrix` operators in order of high to low precedence from top down | `Add`, `Subtract` | `+`, `-` | left to right | `1 + 2` | | Bitwise shift | `<<`, `>>` | left to right | `13 << 2` | | Bitwise `And` | `&` | left to right | `a & 0xC3` | -| Bitwise `Xor` | `^` | left to right | `3 ^ 4`` | +| Bitwise `Xor` | `^` | left to right | `3 ^ 4` | | Bitwise `Or` | `\|` | left to right | `b \| 0xC3` | | Comparison | `==`, `!=`, `<`, `>`, `<=`, `>=` | left to right | `a == b`, `c != d` | | `And` | `&&` | left to right | `res && other` |