summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorDavid Underwood <david.underwood@jadedpixel.com>2013-06-29 18:04:37 -0400
committerDavid Underwood <david.underwood@jadedpixel.com>2013-06-29 18:04:37 -0400
commitb9e0c189ee856de31a3fd035b39bd54765104a8d (patch)
tree918072170f06e3a7515df3b332b8577beacadf03
parent8de5c352bc94bf6f1e5886e68356b53e0ffd80d4 (diff)
fixes typos in the boolean results
-rw-r--r--ruby.html.markdown8
1 files changed, 4 insertions, 4 deletions
diff --git a/ruby.html.markdown b/ruby.html.markdown
index 32dfeff3..a317c498 100644
--- a/ruby.html.markdown
+++ b/ruby.html.markdown
@@ -39,10 +39,10 @@ false #=> falsehood
!false #=> true
# More comparisons
-1 < 10 #=> True
-1 > 10 #=> False
-2 <= 2 #=> True
-2 >= 2 #=> True
+1 < 10 #=> true
+1 > 10 #=> false
+2 <= 2 #=> true
+2 >= 2 #=> true
'I am a string'
"I am a string too"