summaryrefslogtreecommitdiff
path: root/proc.c
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-12-01 02:05:53 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-12-01 02:05:53 +0000
commit089429eab93ab1f27d75be15cb15bfa1e63984f3 (patch)
tree28be27f7dc68c56b2b86430c8da655d61e4a976e /proc.c
parent27e3e03a025934bd906c16996ef0e2b077a66dad (diff)
* proc.c: fix grammar by @BenMorganIO [fix GH-764][ci skip]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48660 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'proc.c')
-rw-r--r--proc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/proc.c b/proc.c
index 06ca490d8d..5cf972e020 100644
--- a/proc.c
+++ b/proc.c
@@ -794,7 +794,7 @@ rb_proc_call_with_block(VALUE self, int argc, const VALUE *argv, VALUE pass_proc
* Keywords arguments will considered as a single additional argument,
* that argument being mandatory if any keyword argument is mandatory.
* A <code>proc</code> with no argument declarations
- * is the same a block declaring <code>||</code> as its arguments.
+ * is the same as a block declaring <code>||</code> as its arguments.
*
* proc {}.arity #=> 0
* proc { || }.arity #=> 0