diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2022-09-30 09:53:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-30 09:53:52 +0200 |
commit | df646572c53f55268a5dbb61628d7c3b302d5663 (patch) | |
tree | 2b4dc98b294e8faae446c21181d48c47a22b54aa /src/nvim/textobject.c | |
parent | 9cf252e12153aa8bf657631a8ed2b83888948fb0 (diff) | |
download | rneovim-df646572c53f55268a5dbb61628d7c3b302d5663.tar.gz rneovim-df646572c53f55268a5dbb61628d7c3b302d5663.tar.bz2 rneovim-df646572c53f55268a5dbb61628d7c3b302d5663.zip |
docs: fix typos (#20394)
Co-authored-by: Raphael <glephunter@gmail.com>
Co-authored-by: smjonas <jonas.strittmatter@gmx.de>
Co-authored-by: zeertzjq <zeertzjq@outlook.com>
Diffstat (limited to 'src/nvim/textobject.c')
-rw-r--r-- | src/nvim/textobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/textobject.c b/src/nvim/textobject.c index 621efa44cf..e6b330cbf1 100644 --- a/src/nvim/textobject.c +++ b/src/nvim/textobject.c @@ -1503,7 +1503,7 @@ bool current_quote(oparg_T *oap, long count, bool include, int quotechar) bool inside_quotes = false; // Looks like "i'" done before bool selected_quote = false; // Has quote inside selection int i; - bool restore_vis_bef = false; // resotre VIsual on abort + bool restore_vis_bef = false; // restore VIsual on abort // When 'selection' is "exclusive" move the cursor to where it would be // with 'selection' "inclusive", so that the logic is the same for both. |