diff options
author | Bjorn Neergaard <bjorn@neersighted.com> | 2018-11-29 14:35:54 -0700 |
---|---|---|
committer | Bjorn Neergaard <bjorn@neersighted.com> | 2018-11-29 14:35:54 -0700 |
commit | fcd5e18a9955df2a11f97f05ce23a45d0ba3f523 (patch) | |
tree | a56088bc2137ebf42657eccd15ed4e2f90f00397 /autoload | |
parent | 4446cf15bea403204b5097f1bfc74267af32553c (diff) | |
download | ale-fcd5e18a9955df2a11f97f05ce23a45d0ba3f523.zip |
Use single quotes to satisfy vint
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/ale/lsp/response.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/ale/lsp/response.vim b/autoload/ale/lsp/response.vim index 939a8997..a0e1984d 100644 --- a/autoload/ale/lsp/response.vim +++ b/autoload/ale/lsp/response.vim @@ -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) |