class RuboCop::Cop::Style::FormatStringToken

def message_text(style)

rubocop:disable FormatStringToken
def message_text(style)
  case style
  when :annotated then 'annotated tokens (like `%<foo>s`)'
  when :template  then 'template tokens (like `%{foo}`)'
  end
end