From fedc29ceb6a4ae31b64aa5009a72da6946e7556c Mon Sep 17 00:00:00 2001 From: Vitalii Elenhaupt Date: Sat, 4 Nov 2017 16:49:50 +0200 Subject: [PATCH] Remove crystal syntax highliting --- src/ameba/rules/negated_conditions_in_unless.cr | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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