mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-24 10:01:38 +00:00
fixes typos in the boolean results
This commit is contained in:
parent
8de5c352bc
commit
b9e0c189ee
@ -39,10 +39,10 @@ false #=> falsehood
|
|||||||
!false #=> true
|
!false #=> true
|
||||||
|
|
||||||
# More comparisons
|
# More comparisons
|
||||||
1 < 10 #=> True
|
1 < 10 #=> true
|
||||||
1 > 10 #=> False
|
1 > 10 #=> false
|
||||||
2 <= 2 #=> True
|
2 <= 2 #=> true
|
||||||
2 >= 2 #=> True
|
2 >= 2 #=> true
|
||||||
|
|
||||||
'I am a string'
|
'I am a string'
|
||||||
"I am a string too"
|
"I am a string too"
|
||||||
|
Loading…
Reference in New Issue
Block a user