aboutsummaryrefslogtreecommitdiff
path: root/doc/lua_api.txt
diff options
context:
space:
mode:
authorLars Müller <34514239+appgurueu@users.noreply.github.com>2022-04-24 21:10:03 +0200
committerGitHub <noreply@github.com>2022-04-24 21:10:03 +0200
commit48d1bca9b8f65ca9ecc62043609685a6858ee094 (patch)
treef2c419b72eeb50f31313de688411fe3ab040cd35 /doc/lua_api.txt
parenta13cf0e3ce1774f89e59a730aaadc5b997293f36 (diff)
downloadhax-minetest-server-48d1bca9b8f65ca9ecc62043609685a6858ee094.tar.gz
hax-minetest-server-48d1bca9b8f65ca9ecc62043609685a6858ee094.zip
Fix typo: vector.check() ought to be vector.check(v)
Diffstat (limited to 'doc/lua_api.txt')
-rw-r--r--doc/lua_api.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/lua_api.txt b/doc/lua_api.txt
index a63e7f856..f53ab0ff7 100644
--- a/doc/lua_api.txt
+++ b/doc/lua_api.txt
@@ -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}`.