Pattern: Empty block
Issue: -
Such empty blocks are typically an oversight or we should provide a comment be clearer what we’re aiming for.
# bad
items.each { |item| }
# good
items.each { |item| puts item }
Pattern: Empty block
Issue: -
Such empty blocks are typically an oversight or we should provide a comment be clearer what we’re aiming for.
# bad
items.each { |item| }
# good
items.each { |item| puts item }