From 48d1bca9b8f65ca9ecc62043609685a6858ee094 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lars=20M=C3=BCller?= <34514239+appgurueu@users.noreply.github.com> Date: Sun, 24 Apr 2022 21:10:03 +0200 Subject: [PATCH] Fix typo: vector.check() ought to be vector.check(v) --- doc/lua_api.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}`.