mirror of
https://github.com/lune-org/docs.git
synced 2025-04-03 18:10:54 +01:00
update docs for 0.7.8 (#9)
This commit is contained in:
parent
d910b08c06
commit
95f49ccefa
4 changed files with 10 additions and 5 deletions
|
@ -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
|
||||
|
|
|
@ -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.
|
||||
|
||||
---
|
||||
|
|
|
@ -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
|
||||
|
||||
---
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue