Skip to content

Commit

Permalink
Update src/Kernel/Boolean.class.st
Browse files Browse the repository at this point in the history
Co-Authored-By: CyrilFerlicot <cyril@ferlicot.me>
  • Loading branch information
mayonnaise-is-an-instrument and jecisc committed Oct 28, 2019
1 parent c785f86 commit f3c7c2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Kernel/Boolean.class.st
Expand Up @@ -149,7 +149,7 @@ Boolean >> ifTrue: trueAlternativeBlock ifFalse: falseAlternativeBlock [
actually reach here because the expression is compiled in-line."

"true ifTrue: [ ^'That is true!' ] ifFalse: [ ^'That is false!' ] >>> 'That is true!'"
"false ifTrue: [ ^'That is true!' ] ifFalse: [ ^'That is false!' ] >>> 'That is false!'"
"false ifTrue: [ 'That is true!' ] ifFalse: [ 'That is false!' ] >>> 'That is false!'"

self subclassResponsibility
]
Expand Down

0 comments on commit f3c7c2a

Please sign in to comment.