mirror of
https://github.com/luau-lang/luau.git
synced 2024-11-15 14:25:44 +08:00
Added note to docs about not using os.difftime for new work (#210)
Co-authored-by: Arseny Kapoulkine <arseny.kapoulkine@gmail.com> Fixes #194.
This commit is contained in:
parent
59366ad7f8
commit
a02086260b
@ -759,7 +759,7 @@ Otherwise, `s` is interpreted as a [date format string](https://www.cplusplus.co
|
|||||||
function os.difftime(a: number, b: number): number
|
function os.difftime(a: number, b: number): number
|
||||||
```
|
```
|
||||||
|
|
||||||
Calculates the difference in seconds between `a` and `b`; provided for compatibility.
|
Calculates the difference in seconds between `a` and `b`; provided for compatibility only. Please use `a - b` instead.
|
||||||
|
|
||||||
```
|
```
|
||||||
function os.time(t: table?): number
|
function os.time(t: table?): number
|
||||||
|
Loading…
Reference in New Issue
Block a user