about summary refs log tree commit diff stats
path: root/shell/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'shell/README.md')
-rw-r--r--shell/README.md5
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