fixes typos in the boolean results

This commit is contained in:
David Underwood 2013-06-29 18:04:37 -04:00
parent 8de5c352bc
commit b9e0c189ee

View File

@ -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"