diff options
Diffstat (limited to 'ruby.html.markdown')
-rw-r--r-- | ruby.html.markdown | 8 |
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" |