BitArray.st
changeset 24242 ae4ea9cab9e2
parent 23976 16af24753c12
child 24243 f4b01e220af0
--- a/BitArray.st	Thu May 30 17:48:02 2019 +0200
+++ b/BitArray.st	Mon Jun 03 08:19:34 2019 +0200
@@ -325,7 +325,7 @@
             v := 0
         ] ifFalse:[
             "/
-            "/ booleanArrays can only hold true and false
+            "/ bitArrays can only hold 0 and 1
             "/
             ^ self elementBoundsError:aNumber
         ]
@@ -350,7 +350,7 @@
      ((self new:8) atAllPut:1) countOnes   
     "
 
-    "Modified (comment): / 26-03-2019 / 11:52:55 / Claus Gittinger"
+    "Modified (format): / 03-06-2019 / 08:18:38 / Claus Gittinger"
 ! !
 
 !BitArray methodsFor:'logical operations'!