aboutsummaryrefslogtreecommitdiff
path: root/runtime/lua/vim/shared.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/shared.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/shared.lua')
-rw-r--r--runtime/lua/vim/shared.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/lua/vim/shared.lua b/runtime/lua/vim/shared.lua
index 5ce5b200d3..32575a1cc9 100644
--- a/runtime/lua/vim/shared.lua
+++ b/runtime/lua/vim/shared.lua
@@ -80,7 +80,7 @@ end
---
--- @see |string.gmatch()|
--- @see |vim.split()|
---- @see |luaref-patterns|
+--- @see |lua-patterns|
--- @see https://www.lua.org/pil/20.2.html
--- @see http://lua-users.org/wiki/StringLibraryTutorial
---
@@ -660,7 +660,7 @@ end
--- Trim whitespace (Lua pattern "%s") from both sides of a string.
---
----@see |luaref-patterns|
+---@see |lua-patterns|
---@see https://www.lua.org/pil/20.2.html
---@param s string String to trim
---@return string String with whitespace removed from its beginning and end