From cbe7a9fc40ebfa5fbfeed1a642adf4f2e6eadbea Mon Sep 17 00:00:00 2001 From: Vyacheslav Egorov Date: Fri, 31 Mar 2023 19:44:02 +0300 Subject: [PATCH] Fix typo --- docs/_posts/2023-03-31-luau-recap-march-2023.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/_posts/2023-03-31-luau-recap-march-2023.md b/docs/_posts/2023-03-31-luau-recap-march-2023.md index f9059056..a951b8e6 100644 --- a/docs/_posts/2023-03-31-luau-recap-march-2023.md +++ b/docs/_posts/2023-03-31-luau-recap-march-2023.md @@ -26,7 +26,7 @@ One limitation we had previously is that after a conditional block, refinements But there are cases where `if` is used to exit the function early, making the following code essentially act as a hidden `else` block. -We know correctly preserve such refinements and you should be able to remove `assert` function calls that were only used to get rid of false positive errors about types being `nil`. +We now correctly preserve such refinements and you should be able to remove `assert` function calls that were only used to get rid of false positive errors about types being `nil`. ```lua local function f(x: string?) @@ -140,3 +140,4 @@ A very special thanks to all of our open source contributors: * [B. Gibbons](https://github.com/bmg817) * [Epix](https://github.com/EpixScripts) * [Harold Cindy](https://github.com/HaroldCindy) +* [Qualadore](https://github.com/Qualadore)