diff options
author | Lars Müller <34514239+appgurueu@users.noreply.github.com> | 2022-04-24 21:10:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-24 21:10:03 +0200 |
commit | 48d1bca9b8f65ca9ecc62043609685a6858ee094 (patch) | |
tree | f2c419b72eeb50f31313de688411fe3ab040cd35 /doc | |
parent | a13cf0e3ce1774f89e59a730aaadc5b997293f36 (diff) | |
download | minetest-48d1bca9b8f65ca9ecc62043609685a6858ee094.tar.gz minetest-48d1bca9b8f65ca9ecc62043609685a6858ee094.tar.bz2 minetest-48d1bca9b8f65ca9ecc62043609685a6858ee094.zip |
Fix typo: vector.check() ought to be vector.check(v)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/lua_api.txt | 2 |
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}`. |