remove redundant "union behavior"

This commit is contained in:
Ardi 2025-03-07 07:50:30 -06:00 committed by GitHub
parent f5c5609d77
commit b995140a1e
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -42,10 +42,6 @@ test(1, "string") -- Type error: Expected `number`, got `string`
- If a different type is encountered, a **type error** is raised.
- `T` will not expand into a union.
2. **Behaviour in Unions**
- A function or type with `T!` cannot instantiate `T` with a union.
- If `T` is already a union, it must remain a union as new types cannot be added to it.
## Drawbacks
- Introduces a new syntax modifier (`T!`), which may lead to a symbol soup, but it doesn't seem too shabby next to `T?`.