#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Mon, 03 Jun 2019 08:19:34 +0200
changeset 24242 ae4ea9cab9e2
parent 24241 7fcbc1f15829
child 24243 f4b01e220af0
#DOCUMENTATION by cg class: BitArray comment/format in: #atAllPut:
BitArray.st
--- 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'!