class RuboCop::Cop::Layout::CommentIndentation

def correct_indentation(next_line)

def correct_indentation(next_line)
  return 0 unless next_line
  indentation_of_next_line = next_line =~ /\S/
  indentation_of_next_line + if less_indented?(next_line)
                               configured_indentation_width
                             else
                               0
                             end
end