diff options
author | Dan Gohman <gohman@apple.com> | 2010-02-26 21:45:37 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-02-26 21:45:37 +0000 |
commit | f34ff01a7a92d20d3c0c118fbf557caceb764797 (patch) | |
tree | 6604a1784f3f1199c586e4908db2e06ffd081190 /utils/vim | |
parent | d68a9fe9b15fe7ed6f80d5006fc02334cdab28e8 (diff) |
Fix grammaro in a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97273 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/vim')
-rw-r--r-- | utils/vim/vimrc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/vim/vimrc b/utils/vim/vimrc index 64b890a87b..8ae3e678cf 100644 --- a/utils/vim/vimrc +++ b/utils/vim/vimrc @@ -24,7 +24,7 @@ if v:version >= 702 au BufWinEnter * let w:m0=matchadd('LongLine', '\%>80v.\+', -1) " Whitespace at the end of a line. This little dance suppresses - " of whitespace that has just been typed. + " whitespace that has just been typed. au BufWinEnter * let w:m1=matchadd('WhitespaceEOL', '\s\+$', -1) au InsertEnter * call matchdelete(w:m1) au InsertEnter * let w:m2=matchadd('WhitespaceEOL', '\s\+\%#\@<!$', -1) |