From 82e187b9711ddc00cf5849058aad0695e74b2a5f Mon Sep 17 00:00:00 2001 From: Dale Wijnand <344610+dwijnand@users.noreply.github.com> Date: Wed, 28 Aug 2019 18:39:42 +0100 Subject: [PATCH] typo --- _sips/sips/2017-09-20-opaque-types.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_sips/sips/2017-09-20-opaque-types.md b/_sips/sips/2017-09-20-opaque-types.md index 61dc6b67ee..dee6cf1a36 100644 --- a/_sips/sips/2017-09-20-opaque-types.md +++ b/_sips/sips/2017-09-20-opaque-types.md @@ -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).