Use single quotes to satisfy vint

This commit is contained in:
Bjorn Neergaard 2018-11-29 14:35:54 -07:00
parent 4446cf15be
commit fcd5e18a99
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ function! ale#lsp#response#ReadDiagnostics(response) abort
endif
if has_key(l:diagnostic, 'source')
let l:loclist_item.detail = printf("[%s] %s", l:diagnostic.source, l:diagnostic.message)
let l:loclist_item.detail = printf('[%s] %s', l:diagnostic.source, l:diagnostic.message)
endif
call add(l:loclist, l:loclist_item)