diff options
author | 2013-10-18 10:23:57 -0400 | |
---|---|---|
committer | 2013-10-18 10:23:57 -0400 | |
commit | ee19e174bb060bbe96565af91975ed3118bc894d (patch) | |
tree | 652d622ea36690bd5f52bc938d8ec5795de31eb2 /modules/textadept/command_entry.lua | |
parent | a488a97c9eb58d8e9db224f3793c74f23d26b07e (diff) | |
download | textadept-ee19e174bb060bbe96565af91975ed3118bc894d.tar.gz textadept-ee19e174bb060bbe96565af91975ed3118bc894d.zip |
More LuaDoc updates.
Diffstat (limited to 'modules/textadept/command_entry.lua')
-rw-r--r-- | modules/textadept/command_entry.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/textadept/command_entry.lua b/modules/textadept/command_entry.lua index dd1b6bc2..0a51a76b 100644 --- a/modules/textadept/command_entry.lua +++ b/modules/textadept/command_entry.lua @@ -91,9 +91,9 @@ local env = setmetatable({}, { }) --- --- Executes string *code* as Lua code. --- Code is subject to an "abbreviated" environment where the contents of the --- `buffer`, `view`, and `ui` tables are also considered as globals. +-- Executes string *code* as Lua code subject to an "abbreviated" environment +-- where the contents of the `buffer`, `view`, and `ui` tables are also +-- considered as global functions and fields. -- Prints the results of '=' expressions like in the Lua prompt. -- @param code The Lua code to execute. -- @name execute_lua |