aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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