aboutsummaryrefslogtreecommitdiff
path: root/modules/lua/commands.lua
diff options
context:
space:
mode:
Diffstat (limited to 'modules/lua/commands.lua')
-rw-r--r--modules/lua/commands.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/lua/commands.lua b/modules/lua/commands.lua
index 8cf25c87..1f6d25a5 100644
--- a/modules/lua/commands.lua
+++ b/modules/lua/commands.lua
@@ -15,7 +15,7 @@ local control_structure_patterns = {
}
---
--- Try to autocomplete Lua's 'end' keyword for control structures like 'if',
+-- Tries to autocomplete Lua's 'end' keyword for control structures like 'if',
-- 'while', 'for', etc.
-- @see control_structure_patterns
function try_to_autocomplete_end()
@@ -38,8 +38,8 @@ function try_to_autocomplete_end()
end
---
--- Determine the Lua file being 'require'd, and search through package.path for
--- that file and open it in Textadept.
+-- Determines the Lua file being 'require'd, searches through package.path for
+-- that file, and opens it in Textadept.
function goto_required()
local buffer = buffer
local line = buffer:get_line( buffer:line_from_position(buffer.current_pos) )