class RuboCop::Formatter::SimpleTextFormatter::Report

def corrections

def corrections
  text = pluralize(@correction_count, 'offense')
  color = @correction_count == @offense_count ? :green : :cyan
  colorize(text, color)
end