diff --git a/src/ameba/rules/negated_conditions_in_unless.cr b/src/ameba/rules/negated_conditions_in_unless.cr index b7ba7ca7..5b0f855a 100644 --- a/src/ameba/rules/negated_conditions_in_unless.cr +++ b/src/ameba/rules/negated_conditions_in_unless.cr @@ -3,7 +3,7 @@ module Ameba::Rules # # For example, this is considered invalid: # - # ```crystal + # ``` # unless !s.empty? # :ok # end @@ -11,7 +11,7 @@ module Ameba::Rules # # And should be rewritten to the following: # - # ```crystal + # ``` # if s.emtpy? # :ok # end