ruby-changes:26958
From: mame <ko1@a...>
Date: Sat, 2 Feb 2013 11:47:48 +0900 (JST)
Subject: [ruby-changes:26958] mame:r39010 (trunk): * lib/English.rb: Remove some confusing words from rdoc. [Bug #7406]
mame 2013-02-02 11:47:33 +0900 (Sat, 02 Feb 2013) New Revision: 39010 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=39010 Log: * lib/English.rb: Remove some confusing words from rdoc. [Bug #7406] Modified files: trunk/ChangeLog trunk/lib/English.rb Index: ChangeLog =================================================================== --- ChangeLog (revision 39009) +++ ChangeLog (revision 39010) @@ -1,3 +1,7 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Sat Feb 2 11:44:42 2013 Yusuke Endoh <mame@t...> + + * lib/English.rb: Remove some confusing words from rdoc. [Bug #7406] + Sat Feb 2 10:17:12 2013 Kazuki Tsujimoto <kazuki@c...> * NEWS: add keyword arguments. Index: lib/English.rb =================================================================== --- lib/English.rb (revision 39009) +++ lib/English.rb (revision 39010) @@ -119,7 +119,7 @@ alias $CHILD_STATUS $? https://github.com/ruby/ruby/blob/trunk/lib/English.rb#L119 # and <tt>$1</tt> to <tt>$9</tt> are all derived from # <tt>$~</tt>. Assigning to <tt>$~</tt> changes the values of these # derived variables. This variable is local to the current -# scope. Thread local. +# scope. alias $LAST_MATCH_INFO $~ # If set to any value apart from +nil+ or +false+, all pattern matches @@ -135,21 +135,21 @@ alias $ARGV $* https://github.com/ruby/ruby/blob/trunk/lib/English.rb#L135 # The string matched by the last successful pattern # match. This variable is local to the current -# scope. Read only. Thread local. +# scope. Read only. alias $MATCH $& # The string preceding the match in the last # successful pattern match. This variable is local to -# the current scope. Read only. Thread local. +# the current scope. Read only. alias $PREMATCH $` # The string following the match in the last # successful pattern match. This variable is local to -# the current scope. Read only. Thread local. +# the current scope. Read only. alias $POSTMATCH $' # The contents of the highest-numbered group matched in the last # successful pattern match. Thus, in <tt>"cat" =~ /(c|a)(t|z)/</tt>, # <tt>$+</tt> will be set to "t". This variable is local to the -# current scope. Read only. Thread local. +# current scope. Read only. alias $LAST_PAREN_MATCH $+ -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/