From 63865e477d9141bd58f01197162358f838d2bacd Mon Sep 17 00:00:00 2001 From: "Justin du Coeur, AKA Mark Waks" Date: Tue, 31 Jul 2018 08:16:54 -0400 Subject: [PATCH] Spelling fix --- docs/docs/reference/enums/adts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)