We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0825e8 commit 3eb6daaCopy full SHA for 3eb6daa
resources/type-system/subtyping.md
@@ -169,10 +169,10 @@ We say that a type `T0` is a subtype of a type `T1` (written `T0 <: T1`) when:
169
- If `T1` is `Null`, `S?` or `S*` for some `S`, then the query is true.
170
- Otherwise, the query is false
171
172
-- **Left Legacy** if `T0` is `S0*` then:
+- **Left Legacy**: if `T0` is `S0*` then:
173
- `T0 <: T1` iff `S0 <: T1`.
174
175
-- **Right Legacy** `T1` is `S1*` then:
+- **Right Legacy**: if `T1` is `S1*` then:
176
- `T0 <: T1` iff `T0 <: S1?`.
177
178
- **Left FutureOr**: if `T0` is `FutureOr<S0>` then:
0 commit comments