From 87fbe13eec38f038c5447cc3f1fea83d9b989abc Mon Sep 17 00:00:00 2001 From: ariel Date: Fri, 25 Apr 2025 15:12:41 -0400 Subject: [PATCH] Update docs/types-library-optional.md --- docs/types-library-optional.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/types-library-optional.md b/docs/types-library-optional.md index 8672db0..1a1bf30 100644 --- a/docs/types-library-optional.md +++ b/docs/types-library-optional.md @@ -6,7 +6,7 @@ This RFC proposes adding a new method to the `types` library in type functions, ## Motivation -Currently its annoying to have to always type `types.unionof(meow, types.singleton(nil))` to make a optional type, this leads to having the following appear in codebases that make use of optional types a lot in type functions: +Optional types occur very commonly, and it is annoying to have to always type `types.unionof(meow, types.singleton(nil))` to make a optional type, this leads to having the following appear in codebases that make use of optional types a lot in type functions: ```luau type function optional(type)