minor edits

This commit is contained in:
sforman 2023-07-31 11:17:05 -07:00
parent 5b8a430d1d
commit d796b78a6f
1 changed files with 6 additions and 6 deletions

View File

@ -261,12 +261,12 @@ dialect of Joy are defined in terms of these:
They could be grouped: They could be grouped:
- Combinators (`branch dip i loop`) - Combinators (`branch` `dip` `i` `loop`)
- Stack Chatter (`clear dup pop stack swaack swap`) - Stack Chatter (`clear` `dup` `pop` `stack` `swaack` `swap`)
- List Manipulation (`concat cons first rest`) - List Manipulation (`concat` `cons` `first` `rest`)
- Math (`+ - * / %`) - Math (`+` `-` `*` `/` `%`)
- Comparison (`< > >= <= != <> =`) - Comparison (`<` `>` `>=` `<=` `!=` `<>` `=`)
- Logic (`truthy not`) - Logic (`truthy` `not`)
- Programming (`inscribe`) - Programming (`inscribe`)
Some of these could be definitions, but we don't want to be completely Some of these could be definitions, but we don't want to be completely