diff options
author | M.K <mk-pmb@users.noreply.github.com> | 2021-01-18 01:45:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-18 01:45:32 +0100 |
commit | e86c93f0bfe6c094014705fd659f186e2723522d (patch) | |
tree | 9ca4292a7e27f8f7b5bc3fb7186479922549dc65 | |
parent | 5e6df0e7be46afe1dbdf6406e1109a8676a22092 (diff) | |
download | minetest-e86c93f0bfe6c094014705fd659f186e2723522d.tar.gz minetest-e86c93f0bfe6c094014705fd659f186e2723522d.tar.bz2 minetest-e86c93f0bfe6c094014705fd659f186e2723522d.zip |
Fix double word "true" in minetest.is_nan explanation (#10820)
-rw-r--r-- | doc/client_lua_api.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/client_lua_api.txt b/doc/client_lua_api.txt index 36eeafcf1..098596481 100644 --- a/doc/client_lua_api.txt +++ b/doc/client_lua_api.txt @@ -620,7 +620,7 @@ Helper functions * `minetest.is_yes(arg)` * returns whether `arg` can be interpreted as yes * `minetest.is_nan(arg)` - * returns true true when the passed number represents NaN. + * returns true when the passed number represents NaN. * `table.copy(table)`: returns a table * returns a deep copy of `table` |