diff options
author | Ikko Ashimine <eltociear@gmail.com> | 2021-04-29 01:45:19 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-29 01:45:19 +0900 |
commit | 136edab7051696a89901632b116953342310e02e (patch) | |
tree | 6d4f11a93d23cdeddf28ee42f6eed429112cb9de /src | |
parent | fbe18d9ca41a419414cb112d0a426aa8803c6236 (diff) | |
download | rneovim-136edab7051696a89901632b116953342310e02e.tar.gz rneovim-136edab7051696a89901632b116953342310e02e.tar.bz2 rneovim-136edab7051696a89901632b116953342310e02e.zip |
screen: fix typo in screen.c
accomodate -> accommodate
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 6be3b6fb60..35d672294d 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 |