class RuboCop::Cop::Style::MagicCommentFormat
def replace_capitalization(text, style)
def replace_capitalization(text, style) return text unless style case style when :lowercase text.downcase when :uppercase text.upcase end end
def replace_capitalization(text, style) return text unless style case style when :lowercase text.downcase when :uppercase text.upcase end end