summaryrefslogtreecommitdiff
path: root/docs/type_system/union.md
diff options
context:
space:
mode:
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
}
```