aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index b1d220d..2392094 100644
--- a/README.md
+++ b/README.md
@@ -31,9 +31,9 @@ Currently implemented primitives:
| `rot` | Rotate the top three stack elements |
| `true` | Write true boolean value to top-of-stack |
| `false` | Write false boolean value to top-of-stack |
-| `!` | Negate boolean value |
+| `not` | Negate boolean value |
+| `and` | Boolean and |
+| `or` | Boolean or |
| `<` | Compare size of two integers |
| `=` | Compare equality of two stack values |
-| `&` | Boolean and |
-| `or` | Boolean or |
| `#` | Debug word printing the whole stack to _stdout_ |