diff options
author | 2011-12-13 05:44:01 -0500 | |
---|---|---|
committer | 2011-12-13 05:44:01 -0500 | |
commit | b97bde85963486f0fb2b81c9089b784473d0505d (patch) | |
tree | 47f583cb130718e8eee80ab53b667c31f037df13 /modules/lua/lua.luadoc | |
parent | 9f804f70df793dd2d50c0b14000ab83a6bc02b83 (diff) | |
download | textadept-b97bde85963486f0fb2b81c9089b784473d0505d.tar.gz textadept-b97bde85963486f0fb2b81c9089b784473d0505d.zip |
Updated Lua Adeptsense.
Diffstat (limited to 'modules/lua/lua.luadoc')
-rw-r--r-- | modules/lua/lua.luadoc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/lua/lua.luadoc b/modules/lua/lua.luadoc index 3ff20d0b..dbb21f25 100644 --- a/modules/lua/lua.luadoc +++ b/modules/lua/lua.luadoc @@ -234,9 +234,9 @@ function tostring(v) end -- "`table`", "`function`", "`thread`", and "`userdata`". function type(v) end --- * `_G._VERSION`: A global variable (not a function) that holds a string --- containing the current interpreter version. The current contents of this --- variable is "`Lua 5.2`". +-- * `_G._VERSION` [string]: A global variable (not a function) that holds a +-- string containing the current interpreter version. The current contents of +-- this variable is "`Lua 5.2`". --- -- This function is similar to `pcall`, except that it sets a new message |