Skip to content

Fix a typo in SIP-35 Opaque types #1516

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 28, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _sips/sips/2017-09-20-opaque-types.md
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ libraries). Unlike a value class, we can guarantee that there will
never be a wrapper around the raw values (or raw nulls).

Notice that `Nullable[Nullable[B]]` is not a valid type, because
`Nullalbe[B]` is not known to be `<: AnyRef`. This is a key difference
`Nullable[B]` is not known to be `<: AnyRef`. This is a key difference
between a type like `Option` (which is parametric and can easily wrap
itself) and a type like `Nullable` (which only has one `null` value to
use).
Expand Down