From 39a1959d289ecba5e61431deaef239123c3f0fcc Mon Sep 17 00:00:00 2001 From: Florian Heinle Date: Thu, 30 Jan 2020 12:45:21 +0100 Subject: [PATCH] Fix wrong return value in proc documentation. --- proc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proc.c b/proc.c index 01efab7d70..47f4e668b5 100644 --- a/proc.c +++ b/proc.c @@ -3759,7 +3759,7 @@ proc_ruby2_keywords(VALUE procval) * * p = proc {|x, y| x } * l = lambda {|x, y| x } - * [[1, 2], [3, 4]].map(&p) #=> [1, 2] + * [[1, 2], [3, 4]].map(&p) #=> [1, 3] * [[1, 2], [3, 4]].map(&l) # ArgumentError: wrong number of arguments (given 1, expected 2) * * The only exception is dynamic method definition: even if defined by