summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-08-31 00:05:29 +0000
committerkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-08-31 00:05:29 +0000
commit8560376071ccb9924b70b8542de12214b4c9462f (patch)
tree601dc926b0a27f6a93a6b533620b35201943dd69
parent7e8cdaa6c34a1b8d6e6e78c61997a5f863f6c3cc (diff)
`$=` is no longer effective. [ci skip]
* doc/globals.rdoc: [DOC] `$=` is no longer effective. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59696 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--doc/globals.rdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/globals.rdoc b/doc/globals.rdoc
index 3bc7e05623..1e70555988 100644
--- a/doc/globals.rdoc
+++ b/doc/globals.rdoc
@@ -10,7 +10,7 @@ $':: The string to the right of the last successful match.
$+:: The highest group matched by the last successful match.
$1:: The Nth group of the last successful match. May be > 1.
$~:: The information about the last match in the current scope.
-$=:: The flag for case insensitive, nil by default.
+$=:: This variable is no longer effective. Deprecated.
$/:: The input record separator, newline by default.
$\:: The output record separator for the print and IO#write. Default is nil.
$,:: The output field separator for the print and Array#join.