summaryrefslogtreecommitdiff
path: root/ale_linters/ruby/rubocop.vim
diff options
context:
space:
mode:
authorChayoung You <yousbe@gmail.com>2017-02-06 15:13:13 +0900
committerChayoung You <yousbe@gmail.com>2017-02-06 15:13:13 +0900
commit6f40cdca65426b9a2d75d41b615b8388fbb1686b (patch)
treea60cf30ae1a43f03d91d2ddedbafe4b92643bb01 /ale_linters/ruby/rubocop.vim
parent9d855904211f60f7d93765ce24b736d364858261 (diff)
downloadale-6f40cdca65426b9a2d75d41b615b8388fbb1686b.zip
Update comments for RuboCop pattern
Diffstat (limited to 'ale_linters/ruby/rubocop.vim')
-rw-r--r--ale_linters/ruby/rubocop.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/ruby/rubocop.vim b/ale_linters/ruby/rubocop.vim
index 5e5e2cbc..87fc7b79 100644
--- a/ale_linters/ruby/rubocop.vim
+++ b/ale_linters/ruby/rubocop.vim
@@ -4,7 +4,7 @@
function! ale_linters#ruby#rubocop#Handle(buffer, lines) abort
" Matches patterns line the following:
"
- " <path>/_:47:14: 83:29: C: Prefer single-quoted strings when you don't
+ " <path>:83:29: C: Prefer single-quoted strings when you don't
" need string interpolation or special symbols.
let l:pattern = '\v:(\d+):(\d+): (.): (.+)'
let l:output = []