diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-11-11 08:20:41 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-11 08:20:41 +0800 |
commit | adbffff5d0e9972253079140453b55d8f9273b29 (patch) | |
tree | bbd6c76b6d223af02aa173abc97d8e6869688787 /src | |
parent | 0e54931b99530cd58af0434e12c58fe6243acb64 (diff) | |
download | rneovim-adbffff5d0e9972253079140453b55d8f9273b29.tar.gz rneovim-adbffff5d0e9972253079140453b55d8f9273b29.tar.bz2 rneovim-adbffff5d0e9972253079140453b55d8f9273b29.zip |
vim-patch:9.1.0849: there are a few typos in the source (#31159)
Problem: there are a few typos in the source.
Solution: Correct typos (zeertzjq).
closes: vim/vim#16026
https://github.com/vim/vim/commit/7c5152826f61bc968ba539ff6db3a55e75556bf2
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/ex_cmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_cmds.c b/src/nvim/ex_cmds.c index 702dbeac27..834370afe5 100644 --- a/src/nvim/ex_cmds.c +++ b/src/nvim/ex_cmds.c @@ -2261,7 +2261,7 @@ int do_ecmd(int fnum, char *ffname, char *sfname, exarg_T *eap, linenr_T newlnum if (buf == NULL) { goto theend; } - // autocommands try to edit a file that is goind to be removed, abort + // autocommands try to edit a file that is going to be removed, abort if (buf_locked(buf)) { // window was split, but not editing the new buffer, reset b_nwindows again if (oldwin == NULL |