summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-11-21 16:39:05 +0000
committerw0rp <devw0rp@gmail.com>2017-11-21 16:39:05 +0000
commite6fb32b7920fbe3d58c055eb7151d1316b2a40ac (patch)
tree0904a0a6ff7280b85e13bbd4c7be0019ac3e1c90
parent8be85c2997a56c753a820ebaccb30fe7ea953d2c (diff)
downloadale-e6fb32b7920fbe3d58c055eb7151d1316b2a40ac.zip
Remove a Unicode character Vint complains about
-rw-r--r--ale_linters/eruby/erubis.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/eruby/erubis.vim b/ale_linters/eruby/erubis.vim
index c9c8ac1e..1ebd4a05 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