]> git.lizzy.rs Git - dragonfireclient.git/commitdiff
Fix typo: vector.check() ought to be vector.check(v)
authorLars Müller <34514239+appgurueu@users.noreply.github.com>
Sun, 24 Apr 2022 19:10:03 +0000 (21:10 +0200)
committerGitHub <noreply@github.com>
Sun, 24 Apr 2022 19:10:03 +0000 (21:10 +0200)
doc/lua_api.txt

index a63e7f856cfd4fd682f0e4ecc048e68edbe85bdd..f53ab0ff7f4b99335050206d6d988d430db9da92 100644 (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}`.