comment
authorStefan Vogel <sv@exept.de>
Mon, 25 Oct 2004 11:07:45 +0200
changeset 8623 7dddc2cbd68c
parent 8622 f92ae83ff3dd
child 8624 fe075842173a
comment
ByteArray.st
--- a/ByteArray.st	Mon Oct 25 10:47:03 2004 +0200
+++ b/ByteArray.st	Mon Oct 25 11:07:45 2004 +0200
@@ -151,7 +151,7 @@
     index := 1. dstIndex := 1.
     [dstIndex <= stop] whileTrue:[
         "/ take 4 characters ...
-        "/ cg: allow lineBreak befor eeach group of 4
+        "/ allow a line break before each group of 4
         sixBits := (aString at:index) codePoint.
         [sixBits < 32] whileTrue:[
             index := index + 1.
@@ -3337,5 +3337,5 @@
 !ByteArray class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ByteArray.st,v 1.166 2004-06-16 12:19:03 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ByteArray.st,v 1.167 2004-10-25 09:07:45 stefan Exp $'
 ! !