From 923f4d00f640f95ece1b44f9b3b1a63b5c8f492f Mon Sep 17 00:00:00 2001 From: ccuser44 <68124053+ccuser44@users.noreply.github.com> Date: Wed, 17 Nov 2021 10:27:00 +0200 Subject: [PATCH] Fixed a mistype --- docs/_pages/library.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_pages/library.md b/docs/_pages/library.md index eec4afb7..72aa6d15 100644 --- a/docs/_pages/library.md +++ b/docs/_pages/library.md @@ -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