From 55f72d2e475f58549b4b3a3ed1fb329c3b3383e0 Mon Sep 17 00:00:00 2001 From: Griffin Date: Thu, 16 Feb 2023 07:50:34 +0800 Subject: [PATCH] Fix spelling error: Library.md --- 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 2939f930..4648e4ca 100644 --- a/docs/_pages/library.md +++ b/docs/_pages/library.md @@ -72,7 +72,7 @@ Prints all arguments to the standard output, using Tab as a separator. function rawequal(a: any, b: any): boolean ``` -Returns true iff `a` and `b` have the same type and point to the same object (for garbage collected types) or are equal (for value types). +Returns true if `a` and `b` have the same type and point to the same object (for garbage collected types) or are equal (for value types). ``` function rawget(t: { [K]: V }, k: K): V?