summaryrefslogtreecommitdiff
path: root/docs/type_system/select.md
diff options
context:
space:
mode:
authornodist <kevin.comas.git@gmail.com>2026-06-17 14:24:51 -0400
committernodist <kevin.comas.git@gmail.com>2026-06-17 14:24:51 -0400
commit1ccb3c92a4c074a12550c584d3651ace2d7c0131 (patch)
tree3288fc8f7b6bb9e31fe43cfbd3d5e18e61d0207e /docs/type_system/select.md
parent7964cf08ac807ac9e7b6d579a25321a23adc9139 (diff)
qualifiers as %
Diffstat (limited to 'docs/type_system/select.md')
-rw-r--r--docs/type_system/select.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/type_system/select.md b/docs/type_system/select.md
index 979e9d1..73e7953 100644
--- a/docs/type_system/select.md
+++ b/docs/type_system/select.md
@@ -5,15 +5,15 @@
A symbol associated with a type
```text
-Select[[SINGLE | MULTIPLE] Type; Collection[.symbol : `const Value]]
+Select[[SINGLE | MULTIPLE] Type; Collection[.symbol : %const Value]]
```
# Alias
```text
-Enum[Generic.T; Collection[.symbol : `const Value]] `alias Select[[SINGLE]; Generic.T; Collection[.symbol : `const Value]]
+Enum[Generic.T; Collection[.symbol : %const Value]] `alias Select[[SINGLE]; Generic.T; Collection[.symbol : %const Value]]
-Mask[Generic.T; Collection[.symbol : `const Value]] `alias Select[[MULTIPLE]; Generic.T; Collection[.symbol : `const Value]]
+Mask[Generic.T; Collection[.symbol : %const Value]] `alias Select[[MULTIPLE]; Generic.T; Collection[.symbol : %const Value]]
```
## Definition Example