diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2022-01-23 12:46:45 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2022-01-23 12:46:45 -0800 |
commit | 38a93706739b864c67fc3107ec862dee4440c875 (patch) | |
tree | abf6ceaf41da82f9d8fac827ebfe36a92f790f47 | |
parent | 9ded0ea18497e7317b6cf72cd9785a241bed5131 (diff) | |
download | mu-38a93706739b864c67fc3107ec862dee4440c875.tar.gz |
typo in shell Readme
-rw-r--r-- | shell/README.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/shell/README.md b/shell/README.md index 180782eb..a8a20213 100644 --- a/shell/README.md +++ b/shell/README.md @@ -150,8 +150,9 @@ def (a <> b) ``` To permit arbitrary infix operators, the Mu shell partitions the space of -code-point-utf8s between operators and regular symbols. As a result, you can't define -symbols mixing the two. +characters (technically Unicode [`code-point`s](../mu.md#variables-registers-and-memory)) +between operators and regular symbols. As a result, you can't define symbols +mixing the two. ``` '*global* => ((* global) . *) # probably not what you want |