Pattern: Passing argument to #to_s
Issue: -
Identifies passing any argument to #to_s
.
# bad
obj.to_s(:delimited)
# good
obj.to_formatted_s(:delimited)
Pattern: Passing argument to #to_s
Issue: -
Identifies passing any argument to #to_s
.
# bad
obj.to_s(:delimited)
# good
obj.to_formatted_s(:delimited)