From a9c61469351d9aaed26b774840b1d4177e23f236 Mon Sep 17 00:00:00 2001 From: Lily Brown Date: Wed, 1 Dec 2021 16:19:37 -0800 Subject: [PATCH] prune some content that isn't out yet --- docs/_posts/2021-11-29-luau-recap-november-2021.md | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/docs/_posts/2021-11-29-luau-recap-november-2021.md b/docs/_posts/2021-11-29-luau-recap-november-2021.md index 73724368..a7d38cd4 100644 --- a/docs/_posts/2021-11-29-luau-recap-november-2021.md +++ b/docs/_posts/2021-11-29-luau-recap-november-2021.md @@ -58,19 +58,8 @@ type X = Fn<(number, string), (string, number)> For more information, check out [the RFC for this feature](https://github.com/Roblox/luau/blob/f86d4c6995418e489a55be0100159009492778ff/rfcs/syntax-type-alias-type-packs.md). -## Infallible type checking - - ## Library improvements -```lua -function coroutine.close(co: thread) -``` - -Given a suspended coroutine, _closes_ the coroutine, changing its state to `dead`. A closed coroutine cannot be resumed. - -See [the RFC for this function](https://github.com/Roblox/luau/blob/f86d4c6995418e489a55be0100159009492778ff/rfcs/function-coroutine-close.md) for more information. - ```lua function bit32.countlz(n: number): number function bit32.countrz(n: number): number