lib/rubocop/cop/rails/blank.rb in rubocop-rails-2.17.4 vs lib/rubocop/cop/rails/blank.rb in rubocop-rails-2.18.0
- old
+ new
@@ -6,10 +6,10 @@
# Checks for code that can be written with simpler conditionals
# using `Object#blank?` defined by Active Support.
#
# Interaction with `Style/UnlessElse`:
# The configuration of `NotPresent` will not produce an offense in the
- # context of `unless else` if `Style/UnlessElse` is inabled. This is
+ # context of `unless else` if `Style/UnlessElse` is enabled. This is
# to prevent interference between the autocorrection of the two cops.
#
# @safety
# This cop is unsafe autocorrection, because `' '.empty?` returns false,
# but `' '.blank?` returns true. Therefore, autocorrection is not compatible