class RuboCop::Cop::Layout::LineContinuationSpacing

def autocorrect(corrector, range)

def autocorrect(corrector, range)
  correction = if no_space_style?
                 '\\'
               elsif space_style?
                 ' \\'
               end
  corrector.replace(range, correction)
end