summaryrefslogtreecommitdiff
path: root/doc/lua_api.md
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2021-03-22 14:07:18 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2021-03-22 14:07:18 +0000
commit3c319408d0de2d2de0c19b24e1a41c0a0e4a823b (patch)
treede0b27939e96ed7a8b3554a149b321ef719cc875 /doc/lua_api.md
parent8392e70f8a07e517fab31f8300cfaf5f02bea0f5 (diff)
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:**