#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Wed, 13 Mar 2019 10:31:40 +0100
changeset 23890 0ba4e4feeae8
parent 23889 6791b56c5de4
child 23891 4b1801afc6ad
#DOCUMENTATION by cg class: False comment/format in: #ifFalse: typo
False.st
--- a/False.st	Wed Mar 13 10:31:29 2019 +0100
+++ b/False.st	Wed Mar 13 10:31:40 2019 +0100
@@ -110,12 +110,14 @@
 
 ifFalse:aBlock
     "If the receiver is false, return the value of evaluating aBlock; nil otherwise.
-     Since the receiver is definitely false here, unconditionally return the blocks value.
+     Since the receiver is definitely false here, unconditionally return the block's value.
      Notice:
         This method is open coded (inlined) by the compiler(s)
         - redefining it may not work as expected."
 
     ^ aBlock value
+
+    "Modified (comment): / 13-03-2019 / 10:23:10 / Claus Gittinger"
 !
 
 ifFalse:falseBlock ifTrue:trueBlock
@@ -250,6 +252,7 @@
     "Created: / 17-07-2017 / 17:43:01 / cg"
 ! !
 
+
 !False methodsFor:'logical operations'!
 
 & aBoolean