summaryrefslogtreecommitdiff
path: root/docs/type_system/union.md
diff options
context:
space:
mode:
authornodist <kevin.comas.git@gmail.com>2026-05-21 15:26:56 -0400
committernodist <kevin.comas.git@gmail.com>2026-05-21 15:26:56 -0400
commitc71cd186644570eb25c45ded7837b0e7aa54987a (patch)
treeb13b3700c2d5c7b23ffbe781615448f1ed184425 /docs/type_system/union.md
parent83729ca507a3266f3793c3ff2db7229a86e80aa6 (diff)
int and float under bits type
Diffstat (limited to 'docs/type_system/union.md')
-rw-r--r--docs/type_system/union.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/type_system/union.md b/docs/type_system/union.md
index 81a3ecb..b2a7e45 100644
--- a/docs/type_system/union.md
+++ b/docs/type_system/union.md
@@ -42,7 +42,7 @@ When a transient union is assigned the first type specified is moved out.
If no match is used and if the type is not the first specified a result with an error is returned
```text
-z : x / y // Result[Int[...]]
+z : x / y // Result[...]
z // is value if y is not zero
```
## Operators