class RuboCop::Cop::Layout::LineEndStringConcatenationIndentation

def check_indented(children)

def check_indented(children)
  @column_delta = base_column(children[0]) + configured_indentation_width -
                  children[1].loc.column
  add_offense_and_correction(children[1], MSG_INDENT) if @column_delta != 0
end