You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following code triggers a MethodCallParentheses warning.
def Australia
puts "G'day!"
end
Australia()
If the parentheses are removed, Ruby interprets Australia as a constant, and throws an exception. Rubocop should not treat parentheses are redundant here.
The text was updated successfully, but these errors were encountered:
The following code triggers a MethodCallParentheses warning.
If the parentheses are removed, Ruby interprets
Australia
as a constant, and throws an exception. Rubocop should not treat parentheses are redundant here.The text was updated successfully, but these errors were encountered: