From 089429eab93ab1f27d75be15cb15bfa1e63984f3 Mon Sep 17 00:00:00 2001 From: hsbt Date: Mon, 1 Dec 2014 02:05:53 +0000 Subject: [PATCH] * 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 --- ChangeLog | 4 ++++ proc.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 8dfb17524f..205eaeb352 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Mon Dec 1 11:05:46 2014 SHIBATA Hiroshi + + * proc.c: fix grammar by @BenMorganIO [fix GH-764][ci skip] + Mon Dec 1 10:49:53 2014 SHIBATA Hiroshi * man/rake.1: Update latest man content by @aledovsky 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 proc with no argument declarations - * is the same a block declaring || as its arguments. + * is the same as a block declaring || as its arguments. * * proc {}.arity #=> 0 * proc { || }.arity #=> 0