summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/syntax/operators.md6
-rw-r--r--docs/type_system/index.md2
-rw-r--r--docs/type_system/native.md (renamed from docs/type_system/object.md)6
-rw-r--r--mkdocs.yml2
4 files changed, 10 insertions, 6 deletions
diff --git a/docs/syntax/operators.md b/docs/syntax/operators.md
index a8b8342..91c1491 100644
--- a/docs/syntax/operators.md
+++ b/docs/syntax/operators.md
@@ -8,7 +8,7 @@
## Cast `$`
-## Print ``print`
+## ``print`
```text
TO `print DATA
@@ -17,3 +17,7 @@ TO `print DATA
If `TO` is not specified the output is send to `STDOUT`
## ``panic`
+
+```test
+`panic ANY
+```
diff --git a/docs/type_system/index.md b/docs/type_system/index.md
index 91c5c16..95602c6 100644
--- a/docs/type_system/index.md
+++ b/docs/type_system/index.md
@@ -44,7 +44,7 @@ Denotes that a field that does not resolve to anything
* #### [Union](./union.md)
-* #### [Object](./object.md)
+* #### [Native](./native.md)
* #### [Shared](./shared.md)
diff --git a/docs/type_system/object.md b/docs/type_system/native.md
index ca6c805..64f0cc9 100644
--- a/docs/type_system/object.md
+++ b/docs/type_system/native.md
@@ -1,15 +1,15 @@
-# Object
+# Native
---
A representation of a native object
```text
-Object[INTERFACE_TABLE_POINTER]
+Native[INTERFACE_TABLE_POINTER]
```
## Alias
```text
-File `alias Object[...]
+File `alias Native[...]
```
diff --git a/mkdocs.yml b/mkdocs.yml
index 8ccc612..dce1970 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -20,7 +20,7 @@ nav:
- Map: 'type_system/map.md'
- Queue: 'type_system/queue.md'
- Union: 'type_system/union.md'
- - Object: 'type_system/object.md'
+ - Native: 'type_system/native.md'
- Shared: 'type_system/shared.md'
- Error: 'type_system/error.md'
- Const: 'type_system/const.md'