From e6fb32b7920fbe3d58c055eb7151d1316b2a40ac Mon Sep 17 00:00:00 2001 From: w0rp Date: Tue, 21 Nov 2017 16:39:05 +0000 Subject: [PATCH] Remove a Unicode character Vint complains about --- ale_linters/eruby/erubis.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ale_linters/eruby/erubis.vim b/ale_linters/eruby/erubis.vim index c9c8ac1..1ebd4a0 100644 --- a/ale_linters/eruby/erubis.vim +++ b/ale_linters/eruby/erubis.vim @@ -10,7 +10,7 @@ function! ale_linters#eruby#erubis#GetCommand(buffer) abort " Rails-flavored eRuby does not comply with the standard as understood by " Erubis, so we'll have to do some substitution. This does not reduce the - " effectiveness of the linter—the translated code is still evaluated. + " effectiveness of the linter - the translated code is still evaluated. return 'ruby -r erubis -e ' . ale#Escape('puts Erubis::Eruby.new($stdin.read.gsub(%{<%=},%{<%})).src') . '< %t | ruby -c' endfunction