Correct vint-discovered advisory in vlog handler

This commit is contained in:
Thomas A. Werne
2019-10-05 11:25:29 -07:00
parent 89fa43551f
commit d0e87c0df4

View File

@@ -34,7 +34,7 @@ function! ale_linters#verilog#vlog#Handle(buffer, lines) abort
call add(l:output, {
\ 'lnum': l:match[3] + 0,
\ 'type': l:match[1] is? 'Error' ? 'E' : 'W',
\ 'text': l:match[2] . " " . l:match[4],
\ 'text': l:match[2] . ' ' . l:match[4],
\})
endfor