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
Change Array check splat(*) example from "good" to "bad": (rubocop#541)
Using the splat technique `[*object]` will _always_ instantiate a new Array object, whereas
`Array(object)` will return the same object it is given as an argument if that argument is already an Array.
0 commit comments