Collection.st
branchjv
changeset 19331 59f77658de07
parent 19229 c20beb908660
parent 19306 437d8365fb5d
child 19478 1f5aa87f6170
--- a/Collection.st	Tue Mar 08 07:53:52 2016 +0000
+++ b/Collection.st	Thu Mar 10 08:13:13 2016 +0000
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1989 by Claus Gittinger
               All Rights Reserved
@@ -65,7 +67,7 @@
     However, for performance reasons, many of them are also redefined in
     concrete subclasses, as some can be implemented much faster if implementation
     details are known (for example, searching can be done faster if it is known that
-    elements are sorted or accessable by a key).
+    elements are sorted or accessible by a key).
 
     [author:]
         Claus Gittinger
@@ -4197,7 +4199,7 @@
     aStream nextPut:$)
 
     "
-     #(1 2 3 'hello' $a $ü) printOn:Transcript
+     #(1 2 3 'hello' $a $ü) printOn:Transcript
      (Array new:100000) printOn:Transcript
      (Array new:100000) printOn:Stdout          
      (Array new:100000) printString size