diff options
author | Thomas Vigouroux <tomvig38@gmail.com> | 2021-06-15 20:06:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-15 20:06:41 +0200 |
commit | 6a77def1ee05d4e4eceddb559bc779cd9b805614 (patch) | |
tree | 0342a629ff09ac22429faf0eff2ac8239274c5f0 /src | |
parent | ec7b21918d07c4b9511709e1dafb79fa77088ba5 (diff) | |
parent | 136edab7051696a89901632b116953342310e02e (diff) | |
download | rneovim-6a77def1ee05d4e4eceddb559bc779cd9b805614.tar.gz rneovim-6a77def1ee05d4e4eceddb559bc779cd9b805614.tar.bz2 rneovim-6a77def1ee05d4e4eceddb559bc779cd9b805614.zip |
Merge pull request #14454 from eltociear/patch-1
screen: fix typo in screen.c
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/screen.c b/src/nvim/screen.c index 844104e7d0..5c494d5066 100644 --- a/src/nvim/screen.c +++ b/src/nvim/screen.c @@ -1709,7 +1709,7 @@ static void win_update(win_T *wp, Providers *providers) && (wp->w_valid & (VALID_WCOL|VALID_WROW)) != (VALID_WCOL|VALID_WROW)) { // A win_line() call applied a fix to screen cursor column to - // accomodate concealment of cursor line, but in this call to + // accommodate concealment of cursor line, but in this call to // update_topline() the cursor's row or column got invalidated. // If they are left invalid, setcursor() will recompute them // but there won't be any further win_line() call to re-fix the |