From 935d592aca3d99b801e7ea838fa1681da7e416a3 Mon Sep 17 00:00:00 2001 From: aaron Date: Tue, 13 Aug 2024 16:03:30 -0700 Subject: [PATCH] Update user-defined-type-functions.md --- docs/user-defined-type-functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user-defined-type-functions.md b/docs/user-defined-type-functions.md index a1ce9c3..34eb90f 100644 --- a/docs/user-defined-type-functions.md +++ b/docs/user-defined-type-functions.md @@ -69,7 +69,7 @@ The type functions will run in a sandboxed VM instance with a limited scope of a - `assert`, `error`, and `print`, which will be used by type functions to provide error feedback to consumers of a type function - `next`, `ipairs`, `pairs`, `select`, and `unpack`, which support basic iteration and interaction with tables and multiple return - `getmetatable`, `setmetable`, `rawget`, `rawset`, `rawlen`, `rawequal`, `tonumber`, `tostring`, `type`, and `typeof`, which are builtin functions that are essentially operators in Luau -- the `math` library +- the `math` library, where we note that `math.randomseed` will be reset automatically on type function entry - the `table` library - the `string` library - the `bit32` library