diff --git a/proc.c b/proc.c index e0ce44297c..11449400ed 100644 --- a/proc.c +++ b/proc.c @@ -3362,8 +3362,8 @@ rb_proc_compose_to_left(VALUE self, VALUE g) * prc >> g -> a_proc * * Returns a proc that is the composition of this proc and the given g. - * The returned proc takes a variable number of arguments, calls g with them - * then calls this proc with the result. + * The returned proc takes a variable number of arguments, calls this proc with them + * then calls g with the result. * * f = proc {|x| x * x } * g = proc {|x| x + x }