docs: fix type of setreg() argument {options} (#27631)

This commit is contained in:
Maria José Solano 2024-02-27 03:53:49 -08:00 committed by GitHub
parent 1a7c38caec
commit 7ad2e3c645
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -8172,7 +8172,7 @@ function vim.fn.setqflist(list, action, what) end
---
--- @param regname string
--- @param value any
--- @param options? table
--- @param options? string
--- @return any
function vim.fn.setreg(regname, value, options) end

View File

@ -9756,7 +9756,7 @@ M.funcs = {
]=],
name = 'setreg',
params = { { 'regname', 'string' }, { 'value', 'any' }, { 'options', 'table' } },
params = { { 'regname', 'string' }, { 'value', 'any' }, { 'options', 'string' } },
signature = 'setreg({regname}, {value} [, {options}])',
},
settabvar = {