File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -462,13 +462,13 @@ function GetRubyIndent(...)
462462
463463 if g: ruby_indent_access_modifier_style == ' indent'
464464 " If the previous line was a private/protected keyword, add a
465- " level of indent
465+ " level of indent.
466466 if s: Match (lnum, s: indent_access_modifier_regex )
467467 return indent (lnum) + &sw
468468 endif
469469 elseif g: ruby_indent_access_modifier_style == ' outdent'
470- " If the previous line was a private/protected/public keyword, remove
471- " a level of indent
470+ " If the previous line was a private/protected/public keyword, add
471+ " a level of indent, since the keyword has been out-dented.
472472 if s: Match (lnum, s: access_modifier_regex )
473473 return indent (lnum) + &sw
474474 endif
You can’t perform that action at this time.
0 commit comments