docs(eval): fix dict param type of mapset

Match maparg's return type.
This commit is contained in:
Sean Dewar
2025-04-01 10:19:14 +01:00
parent 4a36f234ac
commit ec6670080a
3 changed files with 5 additions and 5 deletions

View File

@@ -5479,7 +5479,7 @@ function vim.fn.mapnew(expr1, expr2) end
--- @param mode string
--- @param abbr? boolean
--- @param dict? boolean
--- @param dict? table<string,any>
--- @return any
function vim.fn.mapset(mode, abbr, dict) end
@@ -5519,7 +5519,7 @@ function vim.fn.mapset(mode, abbr, dict) end
--- endfor
--- <
---
--- @param dict boolean
--- @param dict table<string,any>
--- @return any
function vim.fn.mapset(dict) end