From bb2d6d84367c3f5757dc0fc7953867358969241b Mon Sep 17 00:00:00 2001 From: Dan Church Date: Tue, 28 Apr 2015 12:25:26 -0500 Subject: [PATCH] Fix grammatical error in comment --- autoload/airline/extensions/whitespace.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/airline/extensions/whitespace.vim b/autoload/airline/extensions/whitespace.vim index f7b63b2..0681389 100644 --- a/autoload/airline/extensions/whitespace.vim +++ b/autoload/airline/extensions/whitespace.vim @@ -27,7 +27,7 @@ function! s:check_mixed_indent() " spaces before or between tabs are not allowed let t_s_t = '(^\t* +\t\s*\S)' " ( x count) - " count of spaces at the end of tabs should be less then tabstop value + " count of spaces at the end of tabs should be less than tabstop value let t_l_s = '(^\t+ {' . &ts . ',}' . '\S)' return search('\v' . t_s_t . '|' . t_l_s, 'nw') else