Fix spelling error: Library.md

This commit is contained in:
Griffin 2023-02-16 07:50:34 +08:00 committed by GitHub
parent 2e5f95ca58
commit 55f72d2e47
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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<K, V>(t: { [K]: V }, k: K): V?