summaryrefslogtreecommitdiff
path: root/proc.c
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2020-04-24 11:06:52 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2020-04-24 11:16:19 +0900
commitac2106acc276854ae2ac8cc5fa6859aa28362f2f (patch)
tree099846bb221495da8af5a458425e090792ded0ed /proc.c
parent0f5ae7a200673d38d035e7d3165f5441fe0d49a7 (diff)
[DOC] Fixed explanation for Method#>> [Bug #16813] [ci skip]
Diffstat (limited to 'proc.c')
-rw-r--r--proc.c4
1 files 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 <i>g</i>.
- * The returned proc takes a variable number of arguments, calls <i>g</i> 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 <i>g</i> with the result.
*
* def f(x)
* x * x