Fix typo: vector.check() ought to be vector.check(v)

master
Lars Müller 2022-04-24 21:10:03 +02:00 committed by GitHub
parent a13cf0e3ce
commit 48d1bca9b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -3421,7 +3421,7 @@ vectors are written like this: `(x, y, z)`:
* Returns the cross product of `v1` and `v2`.
* `vector.offset(v, x, y, z)`:
* Returns the sum of the vectors `v` and `(x, y, z)`.
* `vector.check()`:
* `vector.check(v)`:
* Returns a boolean value indicating whether `v` is a real vector, eg. created
by a `vector.*` function.
* Returns `false` for anything else, including tables like `{x=3,y=1,z=4}`.