#BUGFIX
authormawalch
Tue, 16 Feb 2016 08:00:37 +0100
changeset 19230 e57897185dab
parent 19224 9799d5bedd22
child 19231 89380e45244b
#BUGFIX class: SequenceableCollection comment/format in: #commonElementsWith: fix typo in class name "SamllInteger" -> "SmallInteger"
SequenceableCollection.st
--- a/SequenceableCollection.st	Mon Feb 15 23:10:17 2016 +0100
+++ b/SequenceableCollection.st	Tue Feb 16 08:00:37 2016 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1989 by Claus Gittinger
 	      All Rights Reserved
@@ -398,7 +400,6 @@
     ^ self == SequenceableCollection
 ! !
 
-
 !SequenceableCollection methodsFor:'Compatibility-Squeak'!
 
 allButFirst
@@ -711,7 +712,6 @@
     ^ self replaceFrom:start to:stop with:anArray startingAt:repStart
 ! !
 
-
 !SequenceableCollection methodsFor:'accessing'!
 
 after:anObject
@@ -1808,7 +1808,7 @@
      and each of the receiver's elements equal the corresponding element of otherCollection.
      This should probably replace the current definition of #= ."
 
-    |size otherSize commonSize "{ Class: SamllInteger }" commonElements|
+    |size otherSize commonSize "{ Class: SmallInteger }" commonElements|
 
     (otherCollection == self) ifTrue:[^ self].
     otherCollection isSequenceable ifFalse: [^ self error:'not sequenceable'].
@@ -7765,7 +7765,6 @@
     "Created: 14.2.1997 / 16:13:03 / cg"
 ! !
 
-
 !SequenceableCollection methodsFor:'searching'!
 
 detect:aBlock startingAt:startIndex