lib/rubocop/cop/style/negated_if.rb in rubocop-0.84.0 vs lib/rubocop/cop/style/negated_if.rb in rubocop-0.85.0
- old
+ new
@@ -4,12 +4,12 @@
module Cop
module Style
# Checks for uses of if with a negated condition. Only ifs
# without else are considered. There are three different styles:
#
- # - both
- # - prefix
- # - postfix
+ # * both
+ # * prefix
+ # * postfix
#
# @example EnforcedStyle: both (default)
# # enforces `unless` for `prefix` and `postfix` conditionals
#
# # bad