aboutsummaryrefslogtreecommitdiff
path: root/runtime/lua/vim/_meta/regex.lua
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2023-08-03 08:35:10 -0700
committerGitHub <noreply@github.com>2023-08-03 08:35:10 -0700
commitb034378cf58bea18ea1bdb4d63692a1336b5752b (patch)
treeb5e2d1a9015c29fd505b8cab53201ff8857792ce /runtime/lua/vim/_meta/regex.lua
parent4d859d00d13893815b6072a7bf2022dd89d5e3f8 (diff)
downloadrneovim-b034378cf58bea18ea1bdb4d63692a1336b5752b.tar.gz
rneovim-b034378cf58bea18ea1bdb4d63692a1336b5752b.tar.bz2
rneovim-b034378cf58bea18ea1bdb4d63692a1336b5752b.zip
docs: luaref cleanup #24541
- drop "luaref-" prefix in favor of "lua-" or nothing, where possible. - remove redundant "luaref--lang…" and "luaref-api…" tags.
Diffstat (limited to 'runtime/lua/vim/_meta/regex.lua')
-rw-r--r--runtime/lua/vim/_meta/regex.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/lua/vim/_meta/regex.lua b/runtime/lua/vim/_meta/regex.lua
index 4bca67797a..ab4f46d43f 100644
--- a/runtime/lua/vim/_meta/regex.lua
+++ b/runtime/lua/vim/_meta/regex.lua
@@ -18,9 +18,9 @@ function vim.regex(re) end
local regex = {} -- luacheck: no unused
--- Match the string against the regex. If the string should match the regex
---- precisely, surround the regex with `^` and `$`. If the was a match, the
---- byte indices for the beginning and end of the match is returned. When
---- there is no match, `nil` is returned. As any integer is truth-y,
+--- precisely, surround the regex with `^` and `$`. If there was a match, the
+--- byte indices for the beginning and end of the match are returned. When
+--- there is no match, `nil` is returned. Because any integer is "truthy",
--- `regex:match()` can be directly used as a condition in an if-statement.
--- @param str string
function regex:match_str(str) end