aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSean Dewar <6256228+seandewar@users.noreply.github.com>2025-04-01 10:19:14 +0100
committerSean Dewar <6256228+seandewar@users.noreply.github.com>2025-04-01 10:55:39 +0100
commitec6670080a71835a54e28a0f5489b0fad5f4e531 (patch)
tree4c0343111964bcf2b25f7d7eff84f8f09fba552d /src
parent4a36f234ace7aef8ff626e753eb7bab08754fc17 (diff)
downloadrneovim-ec6670080a71835a54e28a0f5489b0fad5f4e531.tar.gz
rneovim-ec6670080a71835a54e28a0f5489b0fad5f4e531.tar.bz2
rneovim-ec6670080a71835a54e28a0f5489b0fad5f4e531.zip
docs(eval): fix dict param type of mapset
Match maparg's return type.
Diffstat (limited to 'src')
-rw-r--r--src/nvim/eval.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/eval.lua b/src/nvim/eval.lua
index f95e79d66d..9f662c6457 100644
--- a/src/nvim/eval.lua
+++ b/src/nvim/eval.lua
@@ -6762,7 +6762,7 @@ M.funcs = {
args = { 1, 3 },
base = 1,
name = 'mapset',
- params = { { 'mode', 'string' }, { 'abbr', 'boolean' }, { 'dict', 'boolean' } },
+ params = { { 'mode', 'string' }, { 'abbr', 'boolean' }, { 'dict', 'table<string,any>' } },
signature = 'mapset({mode}, {abbr}, {dict})',
},
mapset__1 = {
@@ -6806,7 +6806,7 @@ M.funcs = {
<
]=],
name = 'mapset',
- params = { { 'dict', 'boolean' } },
+ params = { { 'dict', 'table<string,any>' } },
signature = 'mapset({dict})',
},
match = {