aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordavidflanagan <davidflanagan@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-11-06 20:21:50 +0000
committerdavidflanagan <davidflanagan@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-11-06 20:21:50 +0000
commitba80fd2bbfc034398e92295a776940db56f8fae6 (patch)
tree3be215e7c74f95f7f2b6bae8c46ade78b57b3162
parent53f22d3a0529ba95d41356f7e93396a42da25cf8 (diff)
downloadruby-ba80fd2bbfc034398e92295a776940db56f8fae6.tar.gz
* eval.c: fix typo in invoke_method documentation
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13832 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--eval.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 8640ac4b5c..f18e7d779e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Tue Nov 7 05:17:24 2007 David Flanagan <davidflanagan@ruby-lang.org>
+
+ * eval.c: fix typo in invoke_method documentation
+
Wed Nov 7 03:52:26 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
* array.c (rb_ary_product): core dumped with non array arguments.
diff --git a/eval.c b/eval.c
index 185993115e..66b0f43c93 100644
--- a/eval.c
+++ b/eval.c
@@ -1498,7 +1498,7 @@ rb_f_send(int argc, VALUE *argv, VALUE recv)
* obj.invoke_method(symbol [, args...]) => obj
*
* Invokes the method identified by _symbol_, passing it any
- * 1arguments specified. Unlike send, invoke_method calls public
+ * arguments specified. Unlike send, invoke_method calls public
* methods only, unless it's invoked in a function call style.
*
* 1.invoke_method(:puts, "hello") # causes NoMethodError