diff options
author | Brian Wignall <brianwignall@gmail.com> | 2019-11-26 07:15:14 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-11-27 22:47:25 -0800 |
commit | 001e69cd4602e84219fd7cfd8ade62f0cb24097c (patch) | |
tree | df635c6a687421d2126b004daec74f1fd2c1f55b /src/nvim/ui_compositor.c | |
parent | 86c4a87fe9a6ce7d5f8fb9de76490b1a0fa64538 (diff) | |
download | rneovim-001e69cd4602e84219fd7cfd8ade62f0cb24097c.tar.gz rneovim-001e69cd4602e84219fd7cfd8ade62f0cb24097c.tar.bz2 rneovim-001e69cd4602e84219fd7cfd8ade62f0cb24097c.zip |
doc: fix typos
close #11459
Diffstat (limited to 'src/nvim/ui_compositor.c')
-rw-r--r-- | src/nvim/ui_compositor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ui_compositor.c b/src/nvim/ui_compositor.c index 7d3ecfa0b8..e582d8f859 100644 --- a/src/nvim/ui_compositor.c +++ b/src/nvim/ui_compositor.c @@ -626,7 +626,7 @@ static void ui_comp_grid_scroll(UI *ui, Integer grid, Integer top, if (covered || curgrid->blending) { // TODO(bfredl): // 1. check if rectangles actually overlap - // 2. calulate subareas that can scroll. + // 2. calculate subareas that can scroll. compose_debug(top, bot, left, right, dbghl_recompose, true); for (int r = (int)(top + MAX(-rows, 0)); r < bot - MAX(rows, 0); r++) { // TODO(bfredl): workaround for win_update() performing two scrolls in a |