aboutsummaryrefslogtreecommitdiff
path: root/runtime/lua/vim/_meta/vimfn.lua
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2024-01-16 12:07:35 +0800
committerGitHub <noreply@github.com>2024-01-16 12:07:35 +0800
commit92672a161cc5701636214e107e959f19eb3832d4 (patch)
tree5bd7c2ef2946c19723c043188b6fac7d6f3055b2 /runtime/lua/vim/_meta/vimfn.lua
parent46a7c1b3193d1f4ba09cd66ce03a1e2340d324a7 (diff)
downloadrneovim-92672a161cc5701636214e107e959f19eb3832d4.tar.gz
rneovim-92672a161cc5701636214e107e959f19eb3832d4.tar.bz2
rneovim-92672a161cc5701636214e107e959f19eb3832d4.zip
docs(builtin): remove signatures of undocumented functions (#27039)
Having an empty signature causes an empty line in generated docs, so remove it. Also change ">" to ">vim" in foreach() docs.
Diffstat (limited to 'runtime/lua/vim/_meta/vimfn.lua')
-rw-r--r--runtime/lua/vim/_meta/vimfn.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/lua/vim/_meta/vimfn.lua b/runtime/lua/vim/_meta/vimfn.lua
index 59497f96e9..50f6e4da52 100644
--- a/runtime/lua/vim/_meta/vimfn.lua
+++ b/runtime/lua/vim/_meta/vimfn.lua
@@ -2321,7 +2321,7 @@ function vim.fn.foldtextresult(lnum) end
--- the current item. For a |Blob| |v:key| has the index of the
--- current byte. For a |String| |v:key| has the index of the
--- current character.
---- Examples: >
+--- Examples: >vim
--- call foreach(mylist, 'let used[v:val] = v:true')
--- <This records the items that are in the {expr1} list.
---