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

Removed NIL/TRUE/FALSE from documents too

This is follow up of 62554ca978
This commit is contained in:
Kazuhiro NISHIYAMA 2020-04-17 17:39:42 +09:00
parent 62554ca978
commit 5257a53090
No known key found for this signature in database
GPG key ID: 262ED8DBB4222F7A
2 changed files with 0 additions and 6 deletions

View file

@ -50,9 +50,6 @@ $-p:: True if option <tt>-p</tt> is set. Read-only variable.
== Pre-defined global constants
TRUE:: The typical true value. Deprecated.
FALSE:: The +false+ itself. Deprecated.
NIL:: The +nil+ itself. Deprecated.
STDIN:: The standard input. The default value for $stdin.
STDOUT:: The standard output. The default value for $stdout.
STDERR:: The standard error output. The default value for $stderr.

View file

@ -20,9 +20,6 @@ Literals create objects you can use in your program. Literals include:
+true+ is a true value. All objects except +nil+ and +false+ evaluate to a
true value in conditional expressions.
(There are also the constants +TRUE+, +FALSE+ and +NIL+, but the lowercase
literal forms are preferred.)
== Numbers
You can write integers of any size as follows: