lib/rubocop/cop/style/and_or.rb in rubocop-1.28.2 vs lib/rubocop/cop/style/and_or.rb in rubocop-1.29.0
- old
+ new
@@ -8,10 +8,10 @@
# all contexts.
#
# @safety
# Auto-correction is unsafe because there is a different operator precedence
# between logical operators (`&&` and `||`) and semantic operators (`and` and `or`),
- # and that might change the behaviour.
+ # and that might change the behavior.
#
# @example EnforcedStyle: always
# # bad
# foo.save and return
#