diff --git a/proc.c b/proc.c index 4f775c899228b5..d72f8d952e9465 100644 --- a/proc.c +++ b/proc.c @@ -2644,11 +2644,11 @@ method_dup(VALUE self) /* * call-seq: - * meth.call(args, ...) -> obj - * meth[args, ...] -> obj - * method === obj -> result_of_method + * call(...) -> obj + * self[...] -> obj + * self === obj -> result_of_method * - * Invokes the meth with the specified arguments, returning the + * Invokes +self+ with the specified arguments, returning the * method's return value. * * m = 12.method("+")