ruby/rubocop: bugfix
This commit is contained in:
parent
0d2909390c
commit
5859a5bdff
@ -39,7 +39,7 @@ function! SyntaxCheckers_ruby_rubocop_GetLocList()
|
|||||||
for n in range(len(loclist))
|
for n in range(len(loclist))
|
||||||
if loclist[n]['type'] == 'F'
|
if loclist[n]['type'] == 'F'
|
||||||
let loclist[n]['type'] = 'E'
|
let loclist[n]['type'] = 'E'
|
||||||
elseif loclist[n]['type'] != 'W' || loclist[n]['type'] != 'E'
|
elseif loclist[n]['type'] != 'W' && loclist[n]['type'] != 'E'
|
||||||
let loclist[n]['type'] = 'W'
|
let loclist[n]['type'] = 'W'
|
||||||
endif
|
endif
|
||||||
endfor
|
endfor
|
||||||
|
Loading…
Reference in New Issue
Block a user