From ac2106acc276854ae2ac8cc5fa6859aa28362f2f Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Fri, 24 Apr 2020 11:06:52 +0900 Subject: [PATCH] [DOC] Fixed explanation for Method#>> [Bug #16813] [ci skip] --- proc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proc.c b/proc.c index 50ebdbde67..e92746915e 100644 --- a/proc.c +++ b/proc.c @@ -3530,8 +3530,8 @@ rb_method_compose_to_left(VALUE self, VALUE g) * meth >> g -> a_proc * * Returns a proc that is the composition of this method and the given g. - * The returned proc takes a variable number of arguments, calls g with them - * then calls this method with the result. + * The returned proc takes a variable number of arguments, calls this method + * with them then calls g with the result. * * def f(x) * x * x