diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2022-02-08 01:19:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-08 08:19:06 +0800 |
commit | 64116d78502e0ca611e13adf9323ef2d3fe708c2 (patch) | |
tree | 67137cdf1fbdf9f5eb6b7a0da81ad7a805d2888a /runtime/lua/vim/ui.lua | |
parent | 9259bc62150e28875d19ea1449d9ea649d842c62 (diff) | |
download | rneovim-64116d78502e0ca611e13adf9323ef2d3fe708c2.tar.gz rneovim-64116d78502e0ca611e13adf9323ef2d3fe708c2.tar.bz2 rneovim-64116d78502e0ca611e13adf9323ef2d3fe708c2.zip |
chore: fix typos (#17250)
Co-authored-by: zeertzjq <zeertzjq@outlook.com>
Co-authored-by: Dani Dickstein <daniel.dickstein@gmail.com>
Co-authored-by: Axel Dahlberg <git@valleymnt.com>
Diffstat (limited to 'runtime/lua/vim/ui.lua')
-rw-r--r-- | runtime/lua/vim/ui.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/lua/vim/ui.lua b/runtime/lua/vim/ui.lua index 0f2de6ce5c..9d4b38f08a 100644 --- a/runtime/lua/vim/ui.lua +++ b/runtime/lua/vim/ui.lua @@ -78,7 +78,7 @@ end --- --- Example: --- <pre> ---- vim.ui.input({ prompt = 'Select value for shiftwidth: ' }, function(input) +--- vim.ui.input({ prompt = 'Enter value for shiftwidth: ' }, function(input) --- vim.o.shiftwidth = tonumber(input) --- end) --- </pre> |