summaryrefslogtreecommitdiff
path: root/doc/lua_api.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/lua_api.md')
-rw-r--r--doc/lua_api.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/lua_api.md b/doc/lua_api.md
index f7af3caffff4..7da414903b01 100644
--- a/doc/lua_api.md
+++ b/doc/lua_api.md
@@ -69,8 +69,8 @@ converts `obj` to lua representation using the following conversions:
- *scalar* values are directly presented by lua objects
- *userdata* values are converted to lua function objects using `LUA_REGISTRYINDEX`,
this can be used to pass functions from lua to c and vice-versa
-- *arrays* are converted to lua tables with numeric indicies suitable for `ipairs` iterations
-- *objects* are converted to lua tables with string indicies
+- *arrays* are converted to lua tables with numeric indices suitable for `ipairs` iterations
+- *objects* are converted to lua tables with string indices
**Parameters:**