summaryrefslogtreecommitdiff
path: root/docs/type_system
diff options
context:
space:
mode:
Diffstat (limited to 'docs/type_system')
-rw-r--r--docs/type_system/bit.md9
-rw-r--r--docs/type_system/buffer.md7
2 files changed, 15 insertions, 1 deletions
diff --git a/docs/type_system/bit.md b/docs/type_system/bit.md
index a1391ff..a5ba35f 100644
--- a/docs/type_system/bit.md
+++ b/docs/type_system/bit.md
@@ -59,7 +59,7 @@ Bool `alias Bit[[BIT8 | BOOL]]
### Div `/`
-### Mod ``mod`
+### ``mod`
### ``exp`
@@ -106,3 +106,10 @@ Bool `alias Bit[[BIT8 | BOOL]]
## Other
### Compare `<=>`
+
+# Char
+
+```text
+c : 'Σ'
+`log c // Char $ 'Σ'
+```
diff --git a/docs/type_system/buffer.md b/docs/type_system/buffer.md
index 0933c8a..bb863a2 100644
--- a/docs/type_system/buffer.md
+++ b/docs/type_system/buffer.md
@@ -37,3 +37,10 @@ Array[Generic.T] `alias Buffer[[TYPE] Generic.T]
# Iterating
# Mutating
+
+# Strings
+
+```text
+s : "asdf"
+`log s String $ "asdf"
+```