mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +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
|
||||
|
||||
# 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"
|
||||
|
Loading…
Reference in New Issue
Block a user