diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-12-06 01:04:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-06 08:04:21 +0800 |
commit | cc38086039853d53157b30fec41babb148399038 (patch) | |
tree | 5d9a6c30d7cd59515a2218cfa29dc89262a33777 /src | |
parent | 06ff540e1ca25f4c26670f184d4087f6e3188064 (diff) | |
download | rneovim-cc38086039853d53157b30fec41babb148399038.tar.gz rneovim-cc38086039853d53157b30fec41babb148399038.tar.bz2 rneovim-cc38086039853d53157b30fec41babb148399038.zip |
docs: small fixes (#26243)
Co-authored-by: umlx5h <umlx5h21@protonmail.com>
Co-authored-by: Gregory Anders <greg@gpanders.com>
Co-authored-by: Evan Farrar <evan@evanfarrar.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/message.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/message.c b/src/nvim/message.c index 219532e45e..b9935d5b5d 100644 --- a/src/nvim/message.c +++ b/src/nvim/message.c @@ -2833,7 +2833,7 @@ static int do_more_prompt(int typed_char) } else { // redisplay all lines // TODO(bfredl): this case is not optimized (though only concerns - // event fragmentization, not unnecessary scroll events). + // event fragmentation, not unnecessary scroll events). grid_fill(&msg_grid_adj, 0, Rows, 0, Columns, ' ', ' ', HL_ATTR(HLF_MSG)); for (int i = 0; mp != NULL && i < Rows - 1; i++) { |