diff --git a/docs/compatibility.md b/docs/compatibility.md index 85b97842..fa19a388 100644 --- a/docs/compatibility.md +++ b/docs/compatibility.md @@ -101,7 +101,7 @@ Floor division is less harmful, but it's used rarely enough that `math.floor(a/b | 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 | -| coersions string-to-number moved to the string library | 😞 | we love this, but it breaks compatibility | +| 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 | | The use of the `__lt` metamethod to emulate `__le` has been removed | 😞 | breaks compatibility and doesn't seem very interesting otherwise | diff --git a/docs/performance.md b/docs/performance.md index c61fc7b0..0333e7f9 100644 --- a/docs/performance.md +++ b/docs/performance.md @@ -49,7 +49,7 @@ The same optimization is applied to the custom globals declared in the script, a ## Importing global access chains -While global access for library functions can be optimized in a similar way, this optimization breaks down when the global table is using sandboxing through metatables, and even when globals aren't sandoxed, `math.max` still requires two table accesses. +While global access for library functions can be optimized in a similar way, this optimization breaks down when the global table is using sandboxing through metatables, and even when globals aren't sandboxed, `math.max` still requires two table accesses. It's always possible to "localize" the global accesses by using `local max = math.max`, but this is cumbersome - in practice it's easy to forget to apply this optimization. To avoid relying on programmers remembering to do this, Luau implements a special optimization called "imports", where most global chains such as `math.max` are resolved when the script is loaded instead of when the script is executed.