diff options
author | KunMing Xie <qqzz014@gmail.com> | 2017-10-09 00:52:57 +0800 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-10-08 18:52:57 +0200 |
commit | 1663599bebd7bd360f116b003b9f572b01d7a8d8 (patch) | |
tree | 8fc211ed3aac1b33bcd55a7e11c3309baf097b1b /src/nvim/charset.c | |
parent | e565fc229412dde1378db7d4dc80ed7ac9dfbcaf (diff) | |
download | rneovim-1663599bebd7bd360f116b003b9f572b01d7a8d8.tar.gz rneovim-1663599bebd7bd360f116b003b9f572b01d7a8d8.tar.bz2 rneovim-1663599bebd7bd360f116b003b9f572b01d7a8d8.zip |
vim-patch:8.0.0164 (#7368)
Problem: Outdated and misplaced comments.
Solution: Fix the comments.
https://github.com/vim/vim/commit/caa55b65c204946d160c1b743c5f8f3b506dc4d3
Diffstat (limited to 'src/nvim/charset.c')
-rw-r--r-- | src/nvim/charset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/charset.c b/src/nvim/charset.c index 403ef65c4f..577fc13a31 100644 --- a/src/nvim/charset.c +++ b/src/nvim/charset.c @@ -762,7 +762,7 @@ bool vim_isIDc(int c) } /// Check that "c" is a keyword character: -/// Letters and characters from 'iskeyword' option for current buffer. +/// Letters and characters from 'iskeyword' option for the current buffer. /// For multi-byte characters mb_get_class() is used (builtin rules). /// /// @param c character to check |