mirror of
https://github.com/CompeyDev/lune-packaging.git
synced 2025-01-09 12:19:09 +00:00
Fix some incorrect docs
This commit is contained in:
parent
99ca1fc230
commit
a4ee9a2e84
2 changed files with 5 additions and 1 deletions
|
@ -23,6 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
### Fixed
|
||||
|
||||
- Fixed the CLI being a bit too picky about file names when trying to run files in `lune` or `.lune` directories
|
||||
- Fixed documentation misses from large changes made in version `0.5.0`
|
||||
|
||||
## `0.5.4` - March 7th, 2023
|
||||
|
||||
|
|
|
@ -676,7 +676,10 @@ declare task: {
|
|||
--[=[
|
||||
@within Task
|
||||
|
||||
Waits for the given duration, with a minimum wait time of 10 milliseconds.
|
||||
Waits for *at least* the given amount of time.
|
||||
|
||||
The minimum wait time possible when using `task.wait` is limited by the underlying OS sleep implementation.
|
||||
For most systems this means `task.wait` is accurate down to about 5 milliseconds or less.
|
||||
|
||||
@param duration The amount of time to wait
|
||||
@return The exact amount of time waited
|
||||
|
|
Loading…
Reference in a new issue