From 2341b5014e1c626563477af9c5f35fc10801ea64 Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Tue, 26 Oct 2021 17:19:37 -0700 Subject: [PATCH] Update compatibility.md Given the new RFC we clearly don't think coroutine.close is never going to happen :) --- docs/_pages/compatibility.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_pages/compatibility.md b/docs/_pages/compatibility.md index 9e49efc..70ca77c 100644 --- a/docs/_pages/compatibility.md +++ b/docs/_pages/compatibility.md @@ -107,7 +107,7 @@ Floor division is less harmful, but it's used rarely enough that `math.floor(a/b | const variables | ❌ | while there's some demand for const variables, we'd never adopt this syntax | | new implementation for math.random | ✔️ | our RNG is based on PCG, unlike Lua 5.4 which uses Xoroshiro | | optional `init` argument to `string.gmatch` | 🤷‍♀️ | no strong use cases | -| new functions `lua_resetthread` and `coroutine.close` | ❌ | not useful without to-be-closed variables | +| new functions `lua_resetthread` and `coroutine.close` | 🤷‍ | not useful without to-be-closed variables | | coercions string-to-number moved to the string library | 😞 | we love this, but it breaks compatibility | | new format `%p` in `string.format` | 🤷‍♀️ | no strong use cases | | `utf8` library accepts codepoints up to 2^31 | 🤷‍♀️ | no strong use cases |