1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/English.rb: Remove some confusing words from rdoc. [Bug #7406]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39010 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
mame 2013-02-02 02:47:33 +00:00
parent d127e92b85
commit 2ae0c4c44b
2 changed files with 9 additions and 5 deletions

View file

@ -1,3 +1,7 @@
Sat Feb 2 11:44:42 2013 Yusuke Endoh <mame@tsg.ne.jp>
* lib/English.rb: Remove some confusing words from rdoc. [Bug #7406]
Sat Feb 2 10:17:12 2013 Kazuki Tsujimoto <kazuki@callcc.net>
* NEWS: add keyword arguments.

View file

@ -119,7 +119,7 @@ alias $CHILD_STATUS $?
# 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 $*
# 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 $+