Fix the docs for Proc#>>.
The docs are wrong about the behaviour of #>> (looks like it was copied from #<<) In (prc >> g).call(n) prc is called first (with n), then g is called with the result.
#>>
#<<
(prc >> g).call(n)
Code examples are OK.
Fix the docs for Proc#>>.
The docs are wrong about the behaviour of
#>>(looks like it was copied from#<<)In
(prc >> g).call(n)prc is called first (with n), then g is called with the result.Code examples are OK.