mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
Fixed a mistype
This commit is contained in:
parent
f108fa83dd
commit
923f4d00f6
1 changed files with 1 additions and 1 deletions
|
@ -761,7 +761,7 @@ function os.difftime(a: number, b: number): number
|
|||
|
||||
Calculates the difference in seconds between `a` and `b`; provided for compatibility.
|
||||
|
||||
It is adviced not to use `os.difftime(a, b)` for new work. Please use `a - b` instead.
|
||||
It is adviced not to use `os.difftime(a, b)` for new work. Please use `b - a` instead.
|
||||
|
||||
```
|
||||
function os.time(t: table?): number
|
||||
|
|
Loading…
Add table
Reference in a new issue