diff --git a/src/ameba/rule/lint/missing_block_argument.cr b/src/ameba/rule/lint/missing_block_argument.cr index b5420f4d..379bfa85 100644 --- a/src/ameba/rule/lint/missing_block_argument.cr +++ b/src/ameba/rule/lint/missing_block_argument.cr @@ -3,19 +3,15 @@ module Ameba::Rule::Lint # # For example, this is considered invalid: # - # ``` - # def foo - # yield 42 - # end - # ``` + # def foo + # yield 42 + # end # # And has to be written as the following: # - # ``` - # def foo(&) - # yield 42 - # end - # ``` + # def foo(&) + # yield 42 + # end # # YAML configuration example: #