summaryrefslogtreecommitdiff
path: root/docs/type_system/function.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/type_system/function.md')
-rw-r--r--docs/type_system/function.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/type_system/function.md b/docs/type_system/function.md
index ebd14ea..cd25254 100644
--- a/docs/type_system/function.md
+++ b/docs/type_system/function.md
@@ -3,20 +3,20 @@
---
```text
-Function_class `alias Enum[
+Function_class `alias Enum[Void
.unknown; .incomplete; .native
.task; process; .generator; .iterator; .closure;
.bound;
.regex
]
-Function[Function_class; RETURN_TYPE; Collection[TYPE.SYMBOL]; STATE; List]
+Function[Function_class; STATE; List; RETURN_TYPE; Collection[TYPE.SYMBOL]]
```
# Alias
```text
-Fn[Generic.T; Collection[TYPE.SYMBOL]] `alias Function[Any; Generic.T; Collection[TYPE.SYMBOL]; STATE; List]
+Fn[Generic.T; Collection[TYPE.SYMBOL]] `alias Function[Any; STATE; List; Generic.T; Collection[TYPE.SYMBOL]]
```
# Inline Definition