diff --git a/docs/docs/reference/enums/adts.md b/docs/docs/reference/enums/adts.md index 8eee1e1a76bd..7515d6546318 100644 --- a/docs/docs/reference/enums/adts.md +++ b/docs/docs/reference/enums/adts.md @@ -52,7 +52,7 @@ Note that the type of the expressions above is always `Option`. That is, the implementation case classes are not visible in the result types of their `apply` methods. This is a subtle difference with respect to normal case classes. The classes making up the cases do -exist, and can be unvealed by constructing them directly with a `new`. +exist, and can be unveiled by constructing them directly with a `new`. ```scala scala> new Option.Some(2)