comment
authorClaus Gittinger <cg@exept.de>
Mon, 17 Jul 2006 14:13:45 +0200
changeset 9448 d7fd5533b1cb
parent 9447 6c4162883f37
child 9449 6ba774be6aa1
comment
Boolean.st
--- a/Boolean.st	Mon Jul 17 13:31:19 2006 +0200
+++ b/Boolean.st	Mon Jul 17 14:13:45 2006 +0200
@@ -197,12 +197,11 @@
 !Boolean methodsFor:'testing'!
 
 isBoolean
-
-    "
-    Return true, because it is a boolean.
-    "
+    "Return true, because it is a boolean."
 
     ^ true.
+
+    "Modified: / 17-07-2006 / 14:14:24 / cg"
 !
 
 isLiteral
@@ -232,5 +231,5 @@
 !Boolean class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Boolean.st,v 1.34 2006-02-20 11:26:13 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Boolean.st,v 1.35 2006-07-17 12:13:45 cg Exp $'
 ! !