summaryrefslogtreecommitdiff
path: root/ale_linters
diff options
context:
space:
mode:
authorw0rp <w0rp@users.noreply.github.com>2017-02-06 09:59:20 +0000
committerGitHub <noreply@github.com>2017-02-06 09:59:20 +0000
commita9a76241ac12901f3f48ab80a6552204c5d01159 (patch)
treee6f0ac3b1290dd5da78322303608c98ac0165f2e /ale_linters
parentccf78c40b10b8ea2adda8fd308e524890216e1b5 (diff)
parent6f40cdca65426b9a2d75d41b615b8388fbb1686b (diff)
downloadale-a9a76241ac12901f3f48ab80a6552204c5d01159.zip
Merge pull request #307 from yous/rubocop-comment
Update comments for RuboCop pattern
Diffstat (limited to 'ale_linters')
-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 = []