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
1 changed files with 2 additions and 2 deletions

View File

@ -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