diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2015-01-22 22:20:29 -0800 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-01-22 22:20:29 -0800 |
commit | 0f39097e5348ae61dbf9a226ffde3bca6b75d659 (patch) | |
tree | 78f2aaf4f7e3af413adf61b95307ef1197056d25 /src/nvim/screen.c | |
parent | 918b5d021d9ece1da76b0bd61ddefe32ba401c89 (diff) | |
parent | 19c22cdb80e30711be5af33cb6726566ad629944 (diff) | |
download | rneovim-0f39097e5348ae61dbf9a226ffde3bca6b75d659.tar.gz rneovim-0f39097e5348ae61dbf9a226ffde3bca6b75d659.tar.bz2 rneovim-0f39097e5348ae61dbf9a226ffde3bca6b75d659.zip |
Merge pull request #1850 from JackDanger/halfway-a-line
doc: "halfway a line" is a very confusing phrase
Diffstat (limited to 'src/nvim/screen.c')
-rw-r--r-- | src/nvim/screen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/screen.c b/src/nvim/screen.c index 8f4f894128..6e4c17f49e 100644 --- a/src/nvim/screen.c +++ b/src/nvim/screen.c @@ -1345,7 +1345,7 @@ static void win_update(win_T *wp) /* * Update a line when it is in an area that needs updating, when it * has changes or w_lines[idx] is invalid. - * bot_start may be halfway a wrapped line after using + * bot_start may be halfway through a wrapped line after using * win_del_lines(), check if the current line includes it. * When syntax folding is being used, the saved syntax states will * already have been updated, we can't see where the syntax state is @@ -4037,7 +4037,7 @@ win_line ( /* DBCS: Put second byte in the second screen char. */ ScreenLines[off] = mb_c & 0xff; ++vcol; - /* When "tocol" is halfway a character, set it to the end of + /* When "tocol" is halfway through a character, set it to the end of * the character, otherwise highlighting won't stop. */ if (tocol == vcol) ++tocol; |