diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2021-10-20 21:19:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-20 12:19:14 -0700 |
commit | 81717d2461a673000a0c44b586652575daf0ddc6 (patch) | |
tree | 894d8afeeb501ef3231169eb41585f93f506b4eb /src/nvim/option.c | |
parent | c5525f265b35599714f4413e42ba5e6734e1961d (diff) | |
download | rneovim-81717d2461a673000a0c44b586652575daf0ddc6.tar.gz rneovim-81717d2461a673000a0c44b586652575daf0ddc6.tar.bz2 rneovim-81717d2461a673000a0c44b586652575daf0ddc6.zip |
vim-patch:8.1.2243: typos in comments (#16104)
Problem: Typos in comments.
Solution: Fix the typos. (Dominique Pelle, closes vim/vim#5160) Also adjust
formatting a bit.
https://github.com/vim/vim/commit/32aa10203bd0b4b270def03311a4599f9ffdecc4
Diffstat (limited to 'src/nvim/option.c')
-rw-r--r-- | src/nvim/option.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c index a8b86ec0a0..fb888ffd0f 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -5359,7 +5359,7 @@ static int put_setstring(FILE *fd, char *cmd, char *name, char_u **valuep, uint6 home_replace(NULL, *valuep, buf, size, false); // If the option value is longer than MAXPATHL, we need to append - // search comma separated part of the option separately, so that it + // each comma separated part of the option separately, so that it // can be expanded when read back. if (size >= MAXPATHL && (flags & P_COMMA) != 0 && vim_strchr(*valuep, ',') != NULL) { |