diff --git a/autoload/syntastic/util.vim b/autoload/syntastic/util.vim index 9f5272bf..4b652d20 100644 --- a/autoload/syntastic/util.vim +++ b/autoload/syntastic/util.vim @@ -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], '\.' ) diff --git a/plugin/syntastic.vim b/plugin/syntastic.vim index ee35b79a..c7538aa1 100644 --- a/plugin/syntastic.vim +++ b/plugin/syntastic.vim @@ -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