summaryrefslogtreecommitdiff
path: root/docs/type_system
diff options
context:
space:
mode:
Diffstat (limited to 'docs/type_system')
-rw-r--r--docs/type_system/fn.md9
-rw-r--r--docs/type_system/name.md2
2 files changed, 8 insertions, 3 deletions
diff --git a/docs/type_system/fn.md b/docs/type_system/fn.md
index 66a350e..c5c1ba7 100644
--- a/docs/type_system/fn.md
+++ b/docs/type_system/fn.md
@@ -10,7 +10,12 @@ Fn_class `alias Enum[
.regex
]
-Fn[Fn_class; RETURN_TYPE; Tuple[ARGS]; STATE; List]
+Fn[Fn_class; RETURN_TYPE; List[ARGS]; STATE; List]
+
+Fn[Fn_class; RETURN_TYPE; ARGS...]
+Fn[RETURN_TYPE; ARGS...]
+Fn[Fn_class; ARGS...]
+Fn[ARGS...]
```
# Function Classes
@@ -37,7 +42,7 @@ A list of tasks with state
## Generator
-A function for creating an iterator or closure
+A function for creating an iterator
## Iterator
diff --git a/docs/type_system/name.md b/docs/type_system/name.md
index 343232b..d506201 100644
--- a/docs/type_system/name.md
+++ b/docs/type_system/name.md
@@ -5,5 +5,5 @@
```text
Name_class `alias Enum[.unknown; .data; .alias; .unique]
-Name[Name_class; TYPE]
+Name[Name_class; Is[Void; Value; Var]]
```