Remove crystal syntax highliting

This commit is contained in:
Vitalii Elenhaupt 2017-11-04 16:49:50 +02:00
parent 2f9ba27811
commit fedc29ceb6
No known key found for this signature in database
GPG key ID: 7558EF3A4056C706

View file

@ -3,7 +3,7 @@ module Ameba::Rules
# #
# For example, this is considered invalid: # For example, this is considered invalid:
# #
# ```crystal # ```
# unless !s.empty? # unless !s.empty?
# :ok # :ok
# end # end
@ -11,7 +11,7 @@ module Ameba::Rules
# #
# And should be rewritten to the following: # And should be rewritten to the following:
# #
# ```crystal # ```
# if s.emtpy? # if s.emtpy?
# :ok # :ok
# end # end