Pattern: (...)
interpreted as grouped expression
Issue: -
Checks for space between a the name of a called method and a left parenthesis.
# bad
puts (x + y)
# good
puts(x + y)
Pattern: (...)
interpreted as grouped expression
Issue: -
Checks for space between a the name of a called method and a left parenthesis.
# bad
puts (x + y)
# good
puts(x + y)