summaryrefslogtreecommitdiff
path: root/docs/type_system/buffer.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/type_system/buffer.md')
-rw-r--r--docs/type_system/buffer.md12
1 files changed, 7 insertions, 5 deletions
diff --git a/docs/type_system/buffer.md b/docs/type_system/buffer.md
index 5333cee..ae0c56b 100644
--- a/docs/type_system/buffer.md
+++ b/docs/type_system/buffer.md
@@ -2,16 +2,18 @@
---
-An sequence of bytes with unknown size and an encoding
+An sequence of bytes with unknown size and a byte representation
```text
-Buffer_encoding : Enum[.byte; .utf8; .utf16; .utf32]
+Buffer_repesentation: Enum[.type; .utf8; .utf16; .utf32]
-Buffer[Buffer_encoding]
+Buffer[TYPE; Buffer_repesentation]
```
## Alias
-```
-String `alias Buffer[.utf8]
+```text
+String `alias Buffer[Void; .utf8]
+
+Vector[Any] `alias Buffer[Any; .type]
```