summaryrefslogtreecommitdiffhomepage
path: root/ruby.html.markdown
diff options
context:
space:
mode:
authorJacob Ward <jacobward1898@gmail.com>2015-11-02 08:12:54 -0700
committerJacob Ward <jacobward1898@gmail.com>2015-11-02 08:12:54 -0700
commit861ee642234d360e9a257e4b4d4ecd44449c81ca (patch)
tree4b505edfba4aa262b3a53fdcbf448cee0ebfc93e /ruby.html.markdown
parentdb4e212602121c5d84fc987d47054dbbbe21b1b0 (diff)
parent140f6c07bc9580fec741e5cac77c5a4e22144c39 (diff)
Merge remote-tracking branch 'adambard/master'
Diffstat (limited to 'ruby.html.markdown')
-rw-r--r--ruby.html.markdown4
1 files changed, 2 insertions, 2 deletions
diff --git a/ruby.html.markdown b/ruby.html.markdown
index 8720fec6..782ffc4c 100644
--- a/ruby.html.markdown
+++ b/ruby.html.markdown
@@ -53,7 +53,7 @@ You shouldn't either
10.* 5 #=> 50
# Special values are objects
-nil # Nothing to see here
+nil # equivalent to null in other languages
true # truth
false # falsehood
@@ -131,7 +131,7 @@ puts "I'm printing!"
# print to the output without a newline
print "I'm printing!"
-#=> I'm printing! => nill
+#=> I'm printing! => nil
# Variables
x = 25 #=> 25