lib/rubocop/cop/style/ternary_parentheses.rb in rubocop-0.48.1 vs lib/rubocop/cop/style/ternary_parentheses.rb in rubocop-0.49.0
- old
+ new
@@ -4,10 +4,10 @@
module Cop
module Style
# This cop checks for the presence of parentheses around ternary
# conditions. It is configurable to enforce inclusion or omission of
# parentheses using `EnforcedStyle`. Omission is only enforced when
- # removing the parentheses won't cause a different behaviour.
+ # removing the parentheses won't cause a different behavior.
#
# @example
#
# EnforcedStyle: require_no_parentheses (default)
#