diff --git a/pages/api-reference/datetime.md b/pages/api-reference/datetime.md index a7425b3..e391e0e 100644 --- a/pages/api-reference/datetime.md +++ b/pages/api-reference/datetime.md @@ -14,7 +14,7 @@ local now = DateTime.now() print(now:toIsoDate()) -- Formats the current moment in time, using the local --- time, the Frech locale, and the specified time string +-- time, the French locale, and the specified time string print(now:formatLocalTime("%A, %d %B %Y", "fr")) -- Returns a specific moment in time as a DateTime instance diff --git a/pages/api-reference/luau.md b/pages/api-reference/luau.md index 886432f..aa2dcbe 100644 --- a/pages/api-reference/luau.md +++ b/pages/api-reference/luau.md @@ -103,6 +103,8 @@ The Luau load options are used for generating a lua function from either bytecod This is a dictionary that may contain one or more of the following values: -- `debugName` - The debug name of the closure. Defaults to `string ["..."]` +- `debugName` - The debug name of the closure. Defaults to `luau.load(...)` +- `environment` - Environment values to set and/or override. Includes default globals unless + overwritten. --- diff --git a/pages/api-reference/process.md b/pages/api-reference/process.md index 43597a6..a3779ad 100644 --- a/pages/api-reference/process.md +++ b/pages/api-reference/process.md @@ -103,6 +103,10 @@ Setting the exit code using this function will override any otherwise automatic - `code` The exit code to set +#### Returns + +- never + --- ### spawn @@ -141,6 +145,7 @@ A dictionary of options for `process.spawn`, with the following available values string to run using a specific shell - `stdio` - How to treat output and error streams from the child process - set to "inherit" to pass output and error streams to the current process +- `stdin` - Optional standard input to pass to spawned child process --- diff --git a/pages/api-reference/task.md b/pages/api-reference/task.md index 113e8ac..48b76c1 100644 --- a/pages/api-reference/task.md +++ b/pages/api-reference/task.md @@ -58,11 +58,9 @@ Defers a thread or function to run at the end of the current task queue. Delays a thread or function to run after `duration` seconds. -If no `duration` is given, this will wait for the minimum amount of time possible. - #### Parameters -- `duration` number? +- `duration` number - `functionOrThread` The function or thread to delay