ruby-changes:5985
From: matz <ko1@a...>
Date: Sat, 21 Jun 2008 04:41:46 +0900 (JST)
Subject: [ruby-changes:5985] Ruby:r17493 (trunk): * enumerator.c (enum_each_cons): typo in RDoc fixed.
matz 2008-06-21 04:41:29 +0900 (Sat, 21 Jun 2008)
New Revision: 17493
Modified files:
trunk/ChangeLog
trunk/enumerator.c
Log:
* enumerator.c (enum_each_cons): typo in RDoc fixed.
http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ChangeLog?r1=17493&r2=17492&diff_format=u
http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/enumerator.c?r1=17493&r2=17492&diff_format=u
Index: ChangeLog
===================================================================
--- ChangeLog (revision 17492)
+++ ChangeLog (revision 17493)
@@ -3,6 +3,8 @@
* ext/bigdecimal/lib/bigdecimal/jacobian.rb (Jacobian::dfdxi):
typo fixed (raize -> raise). [ruby-list:45101]
+ * enumerator.c (enum_each_cons): typo in RDoc fixed.
+
Sat Jun 21 00:45:34 2008 URABE Shyouhei <shyouhei@r...>
* tool/make-snapshot: do not use sha256sum; use BASERUBY instead
Index: enumerator.c
===================================================================
--- enumerator.c (revision 17492)
+++ enumerator.c (revision 17493)
@@ -169,7 +169,7 @@
* each_cons(n)
*
* Iterates the given block for each array of consecutive <n>
- * elements. If no block is given, returns an enumerator.a
+ * elements. If no block is given, returns an enumerator.
*
* e.g.:
* (1..10).each_cons(3) {|a| p a}
--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/