diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-12-06 20:45:17 -0500 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-12-07 11:48:55 -0500 |
commit | 7d8f32338f4bbb4b2addeacc17aceca9f73fe644 (patch) | |
tree | d6f622ea97782a4894a2f62e1eb2d12c20129aeb /src/nvim/message.c | |
parent | 30ed245d008045a505a87ab21d22ada45dd1f4b5 (diff) | |
download | rneovim-7d8f32338f4bbb4b2addeacc17aceca9f73fe644.tar.gz rneovim-7d8f32338f4bbb4b2addeacc17aceca9f73fe644.tar.bz2 rneovim-7d8f32338f4bbb4b2addeacc17aceca9f73fe644.zip |
vim-patch:8.1.2402: typos and other small things
Problem: Typos and other small things.
Solution: Small fixes.
https://github.com/vim/vim/commit/f48ee3c28488f7c361732316f905ac420b3d8087
Diffstat (limited to 'src/nvim/message.c')
-rw-r--r-- | src/nvim/message.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/message.c b/src/nvim/message.c index 03cbe8ec18..067f1c3283 100644 --- a/src/nvim/message.c +++ b/src/nvim/message.c @@ -1378,7 +1378,7 @@ static void msg_home_replace_attr(char_u *fname, int attr) /* * Output 'len' characters in 'str' (including NULs) with translation - * if 'len' is -1, output upto a NUL character. + * if 'len' is -1, output up to a NUL character. * Use attributes 'attr'. * Return the number of characters it takes on the screen. */ @@ -1501,7 +1501,7 @@ void msg_make(char_u *arg) } } -/// Output the string 'str' upto a NUL character. +/// Output the string 'str' up to a NUL character. /// Return the number of characters it takes on the screen. /// /// If K_SPECIAL is encountered, then it is taken in conjunction with the |