Minor comment fix.

This commit is contained in:
LCD 47 2015-05-03 19:59:35 +03:00
parent 4605886ea7
commit 24bb293574
2 changed files with 2 additions and 2 deletions

View File

@ -323,7 +323,7 @@ function! syntastic#util#dictFilter(errors, filter) abort " {{{2
endtry
endfunction " }}}2
" Return a [seconds, fractions] list of integers, representing the
" Return a [seconds, fractions] list of strings, representing the
" (hopefully high resolution) time since program start
function! syntastic#util#stamp() abort " {{{2
return split( split(reltimestr(reltime(g:_SYNTASTIC_START)))[0], '\.' )

View File

@ -19,7 +19,7 @@ if has('reltime')
lockvar! g:_SYNTASTIC_START
endif
let g:_SYNTASTIC_VERSION = '3.6.0-79'
let g:_SYNTASTIC_VERSION = '3.6.0-80'
lockvar g:_SYNTASTIC_VERSION
" Sanity checks {{{1