aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc
diff options
context:
space:
mode:
authorLewis Russell <lewis6991@gmail.com>2024-02-15 10:53:51 +0000
committerLewis Russell <me@lewisr.dev>2024-02-15 11:32:50 +0000
commit35f453f65df2cab4eaeda99c205d1fda235b7bc9 (patch)
tree76ab2230ceacee90354962032641b9ac5f5e8f54 /runtime/doc
parentc6f7419420895490edd24dddf3e0f4c6f3f52c6f (diff)
downloadrneovim-35f453f65df2cab4eaeda99c205d1fda235b7bc9.tar.gz
rneovim-35f453f65df2cab4eaeda99c205d1fda235b7bc9.tar.bz2
rneovim-35f453f65df2cab4eaeda99c205d1fda235b7bc9.zip
fix: type warnings in shared.lua
Diffstat (limited to 'runtime/doc')
-rw-r--r--runtime/doc/lua.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/doc/lua.txt b/runtime/doc/lua.txt
index 6a1d94d34b..5285f0b1b5 100644
--- a/runtime/doc/lua.txt
+++ b/runtime/doc/lua.txt
@@ -893,6 +893,9 @@ vim.empty_dict() *vim.empty_dict()*
Note: If numeric keys are present in the table, Nvim ignores the metatable
marker and converts the dict to a list/array anyway.
+ Return: ~
+ (`table`)
+
vim.iconv({str}, {from}, {to}, {opts}) *vim.iconv()*
The result is a String, which is the text {str} converted from encoding
{from} to encoding {to}. When the conversion fails `nil` is returned. When