update docs for 0.7.8 (#9)

This commit is contained in:
rosalina 2023-10-06 09:26:36 -04:00 committed by GitHub
parent d910b08c06
commit 95f49ccefa
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 5 deletions

View file

@ -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

View file

@ -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.
---

View file

@ -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
---

View file

@ -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