diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-08-10 03:20:56 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-10 03:20:56 +0800 |
commit | bad71a4ca7075bc7f89be6849cfbbd9657ec0baa (patch) | |
tree | a43dc889a18ded91390cdd7ca2d067675d490367 /runtime/lua/vim/_meta/vimfn.lua | |
parent | 8f9b2652fbe298ecde9dcc9603808c772db05531 (diff) | |
parent | f81645abd2e54b3b70ac5d420594430f27639510 (diff) | |
download | rneovim-bad71a4ca7075bc7f89be6849cfbbd9657ec0baa.tar.gz rneovim-bad71a4ca7075bc7f89be6849cfbbd9657ec0baa.tar.bz2 rneovim-bad71a4ca7075bc7f89be6849cfbbd9657ec0baa.zip |
Merge pull request #24631 from clason/vim-c2bd205254c8
vim-patch:{c2bd205254c8,0401933a5be3}: typo fixes
Diffstat (limited to 'runtime/lua/vim/_meta/vimfn.lua')
-rw-r--r-- | runtime/lua/vim/_meta/vimfn.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/lua/vim/_meta/vimfn.lua b/runtime/lua/vim/_meta/vimfn.lua index 7c98ed8849..14aae99971 100644 --- a/runtime/lua/vim/_meta/vimfn.lua +++ b/runtime/lua/vim/_meta/vimfn.lua @@ -534,7 +534,7 @@ function vim.fn.buflisted(buf) end --- refers to an existing file then the file is read. Otherwise --- the buffer will be empty. If the buffer was already loaded --- then there is no change. If the buffer is not related to a ---- file the no file is read (e.g., when 'buftype' is "nofile"). +--- file then no file is read (e.g., when 'buftype' is "nofile"). --- If there is an existing swap file for the file of the buffer, --- there will be no dialog, the buffer will be loaded anyway. --- The {buf} argument is used like with |bufexists()|. |