Skip to content

Commit

Permalink
Update types.md (#1199)
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
Nigel-Ecma authored Nov 10, 2024
1 parent 6d08166 commit 636c182
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion standard/types.md
Original file line number Diff line number Diff line change
Expand Up @@ -725,7 +725,7 @@ A *nullable reference type* is denoted by appending a `?` to a valid non-nullabl
There are two forms of nullability for reference types:

- *nullable*: A *nullable-reference-type* can be assigned `null`. Its default null state is *maybe-null*.
- *non-nullable* A *non-nullable reference* should not be assigned a `null` value. Its default null state is *not-null*.
- *non-nullable*: A *non-nullable reference* should not be assigned a `null` value. Its default null state is *not-null*.

> *Note:* The types `R` and `R?` are represented by the same underlying type, `R`. A variable of that underlying type can either contain a reference to an object or be the value `null`, which indicates “no reference.” *end note*
Expand Down

0 comments on commit 636c182

Please sign in to comment.