summaryrefslogtreecommitdiff
path: root/docs/type_system/union.md
diff options
context:
space:
mode:
authornodist <kevin.comas.git@gmail.com>2026-06-01 18:08:43 -0400
committernodist <kevin.comas.git@gmail.com>2026-06-01 18:08:43 -0400
commit040fb35732e6c7c0d8f4ccf7c9bee7242cea6939 (patch)
treedead2e81dd8b3778867291c0bbb93b2b75b014a3 /docs/type_system/union.md
parent07251d8774190396191b1f6c63be586902bca665 (diff)
update action syntax and start application
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 d14a7bc..5bd3d10 100644
--- a/docs/type_system/union.md
+++ b/docs/type_system/union.md
@@ -12,7 +12,7 @@ Union[Union_class; TYPE.symbol; ...]
u : Union[I64.a; I64.b; I64.c] $ (.c : 5) // defaults to Union[.container; ...]
# u {
- .c { c ... }[c]
+ .c {[c] c ... }
{ ... } // default
}
```