ruby-changes:4352
From: ko1@a...
Date: Wed, 26 Mar 2008 18:14:55 +0900 (JST)
Subject: [ruby-changes:4352] matz - Ruby:r15842 (trunk): * variable.c (rb_mod_constants): rdoc updated. a patch from
matz 2008-03-26 18:13:54 +0900 (Wed, 26 Mar 2008)
New Revision: 15842
Modified files:
trunk/ChangeLog
trunk/variable.c
Log:
* variable.c (rb_mod_constants): rdoc updated. a patch from
Florian Gilcher <flo AT andersground.net> in [ruby-core:16009].
http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/variable.c?r1=15842&r2=15841&diff_format=u
http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ChangeLog?r1=15842&r2=15841&diff_format=u
Index: ChangeLog
===================================================================
--- ChangeLog (revision 15841)
+++ ChangeLog (revision 15842)
@@ -1,3 +1,8 @@
+Wed Mar 26 18:11:26 2008 Yukihiro Matsumoto <matz@r...>
+
+ * variable.c (rb_mod_constants): rdoc updated. a patch from
+ Florian Gilcher <flo AT andersground.net> in [ruby-core:16009].
+
Wed Mar 26 00:55:28 2008 Yusuke Endoh <mame@t...>
* test/ruby/test_rand.rb: add tests to achieve over 95% test coverage
Index: variable.c
===================================================================
--- variable.c (revision 15841)
+++ variable.c (revision 15842)
@@ -1582,8 +1582,8 @@
* modules (example at start of section), unless the <i>all</i>
* parameter is set to <code>false</code>.
*
- * IO.constants.include?("SYNC") => true
- * IO.constants(false).include?("SYNC") => false
+ * IO.constants.include?(:SYNC) => true
+ * IO.constants(false).include?(:SYNC) => false
*
* Also see <code>Module::const_defined?</code>.
*/
--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/