class RuboCop::Cop::Style::ParenthesesAroundCondition

def message(node)

def message(node)
  kw = node.parent.keyword
  article = kw == 'while' ? 'a' : 'an'
  "Don't use parentheses around the condition of #{article} `#{kw}`."
end