diff options
author | 2020-03-13 22:55:08 -0400 | |
---|---|---|
committer | 2020-03-13 22:55:08 -0400 | |
commit | 99543e53c694ed04a9713d3ed5cbc99d68ac0565 (patch) | |
tree | 1ca1a389aeaf34e07f4197a3034aa06eeb9bea17 /modules/textadept/find.lua | |
parent | d576494303f603a315f1edee5b8f91cd02a60d60 (diff) | |
download | textadept-99543e53c694ed04a9713d3ed5cbc99d68ac0565.tar.gz textadept-99543e53c694ed04a9713d3ed5cbc99d68ac0565.zip |
More code cleanup and refactoring.
Diffstat (limited to 'modules/textadept/find.lua')
-rw-r--r-- | modules/textadept/find.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/textadept/find.lua b/modules/textadept/find.lua index 1b7a98c5..614dc4e6 100644 --- a/modules/textadept/find.lua +++ b/modules/textadept/find.lua @@ -389,7 +389,7 @@ local function is_ff_buf(buf) return buf._type == _L['[Files Found Buffer]'] end -- @param line_num The line number in the files found buffer that contains the -- search result to go to. -- @param next Optional flag indicating whether to go to the next search result --- or the previous one. Only applicable when *line_num* is `nil` or `false`. +-- or the previous one. Only applicable when *line_num* is `nil`. -- @name goto_file_found function M.goto_file_found(line_num, next) local ff_view, ff_buf = nil, nil |