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
Inspecting 1 file
C
Offenses:
test.rb:2:8: C: Style/SpaceAroundKeyword: Space after keyword yield is missing.
puts yield.reverse
^^^^^
1 file inspected, 1 offense detected
yield is a keyword, but it returns a value and maybe you'll want to chain a method on it. I can move the method call to the next line but it doesn't feel like an ideal change
The text was updated successfully, but these errors were encountered:
With RuboCop 0.37 this produces this warning:
yield is a keyword, but it returns a value and maybe you'll want to chain a method on it. I can move the method call to the next line but it doesn't feel like an ideal change
The text was updated successfully, but these errors were encountered: