mame (Yusuke Endoh) wrote in #note-3: > The behavior of 2.5.5 was wrong. `Array#map` yields each element, in this case, `['one', 'two']`, an array of two elements. The lambda requires two arguments, but one array is passed, which shou...Mattruby (Matthew Nash)
In Ruby 2.5.5 i get what i'm expecting ```ruby test = -> (one, two) { one } [['one', 'two']].map(&test) => ["one"] ``` In Ruby 2.7.0 this doesn't work ```ruby test = -> (one, two) { one } [['one', 'two']].map(&test) wrong num...Mattruby (Matthew Nash)