diff options
Diffstat (limited to 'docs/type_system')
| -rw-r--r-- | docs/type_system/map.md | 2 | ||||
| -rw-r--r-- | docs/type_system/object.md | 3 | ||||
| -rw-r--r-- | docs/type_system/value.md | 4 |
3 files changed, 7 insertions, 2 deletions
diff --git a/docs/type_system/map.md b/docs/type_system/map.md index e8c220e..9d62b13 100644 --- a/docs/type_system/map.md +++ b/docs/type_system/map.md @@ -9,5 +9,5 @@ Map[KEY_TYPE; VALUE_TYPE] ## Alias ```text -Set[Any] `alias Map[Void; Any] +Set[Any] `alias Map[Any; Void] ``` diff --git a/docs/type_system/object.md b/docs/type_system/object.md index 6a4ec75..2f880a6 100644 --- a/docs/type_system/object.md +++ b/docs/type_system/object.md @@ -5,4 +5,5 @@ A representation of a native object ```text -Object[IDENTIFIER; INTERFACE_TABLE] +Object[INTERFACE_TABLE_POINTER] +``` diff --git a/docs/type_system/value.md b/docs/type_system/value.md index be36f81..53807ba 100644 --- a/docs/type_system/value.md +++ b/docs/type_system/value.md @@ -1,3 +1,7 @@ # Value --- + +```text +Value[TYPE; DATA] +``` |
