From 92672a161cc5701636214e107e959f19eb3832d4 Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Tue, 16 Jan 2024 12:07:35 +0800 Subject: 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. --- src/nvim/eval.lua | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src') diff --git a/src/nvim/eval.lua b/src/nvim/eval.lua index 9a66d20dbb..a820f11a5e 100644 --- a/src/nvim/eval.lua +++ b/src/nvim/eval.lua @@ -2940,7 +2940,7 @@ M.funcs = { 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')