aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept/find.lua
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2013-10-18 10:23:57 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2013-10-18 10:23:57 -0400
commitee19e174bb060bbe96565af91975ed3118bc894d (patch)
tree652d622ea36690bd5f52bc938d8ec5795de31eb2 /modules/textadept/find.lua
parenta488a97c9eb58d8e9db224f3793c74f23d26b07e (diff)
downloadtextadept-ee19e174bb060bbe96565af91975ed3118bc894d.tar.gz
textadept-ee19e174bb060bbe96565af91975ed3118bc894d.zip
More LuaDoc updates.
Diffstat (limited to 'modules/textadept/find.lua')
-rw-r--r--modules/textadept/find.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/textadept/find.lua b/modules/textadept/find.lua
index 4a9e6054..f367d5fa 100644
--- a/modules/textadept/find.lua
+++ b/modules/textadept/find.lua
@@ -189,7 +189,7 @@ end
-- otherwise continues an incremental search by searching for the next or
-- previous instance of string *text* depending on boolean *next*.
-- *anchor* indicates whether or not to search for *text* starting from the
--- current position instead of the position where incremental search began at.
+-- caret position instead of the position where incremental search began at.
-- Only the `match_case` find option is recognized. Normal command entry
-- functionality is unavailable until the search is finished by pressing `Esc`
-- (`⎋` on Mac OSX | `Esc` in curses).
@@ -197,7 +197,7 @@ end
-- incremental search.
-- @param next Flag indicating whether or not the search direction is forward.
-- @param anchor Optional flag indicating whether or not to start searching from
--- the current position. The default value is `false`.
+-- the caret position. The default value is `false`.
-- @name find_incremental
function M.find_incremental(text, next, anchor)
if text then find_incremental(text, next, anchor) return end