diff options
author | ii14 <ii14@users.noreply.github.com> | 2021-11-28 12:33:44 +0100 |
---|---|---|
committer | Dundar Göc <gocdundar@gmail.com> | 2021-11-30 09:03:41 +0100 |
commit | bc1d13bb368298988e87983307e6d92f20441f56 (patch) | |
tree | 3a1810dc9426d32210a806179fd4e649d259e658 /src/nvim/lua/vim.lua | |
parent | e4976cbd26dc6f7f7b8444d2b107e3ed2b97f25e (diff) | |
download | rneovim-bc1d13bb368298988e87983307e6d92f20441f56.tar.gz rneovim-bc1d13bb368298988e87983307e6d92f20441f56.tar.bz2 rneovim-bc1d13bb368298988e87983307e6d92f20441f56.zip |
chore: fix typos
Co-authored-by: ii14 <ii14@users.noreply.github.com>
Diffstat (limited to 'src/nvim/lua/vim.lua')
-rw-r--r-- | src/nvim/lua/vim.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/lua/vim.lua b/src/nvim/lua/vim.lua index ad886b40dd..92734513bc 100644 --- a/src/nvim/lua/vim.lua +++ b/src/nvim/lua/vim.lua @@ -454,7 +454,7 @@ local on_key_cbs = {} --- On each key press, Nvim passes the key char to fn(). |i_CTRL-V| --- If {fn} is nil, it removes the callback for the associated {ns_id} ---@param ns_id number? Namespace ID. If nil or 0, generates and returns a new ---- |nvim_create_namesapce()| id. +--- |nvim_create_namespace()| id. --- ---@return number Namespace id associated with {fn}. Or count of all callbacks ---if on_key() is called without arguments. |