Interval.st
changeset 9411 5e2a6ab94c0a
parent 8940 b05bb4dd96b3
child 10794 b37d77576d77
--- a/Interval.st	Mon Jul 03 18:08:43 2006 +0200
+++ b/Interval.st	Mon Jul 03 18:10:10 2006 +0200
@@ -84,8 +84,8 @@
 
 decodeFromLiteralArray:anArray
     "create & return a new instance from information encoded in anArray.
-     Re-redefined, since the implementation in SeqColl creates instances with an initial
-     size, which is not allowed for intevals."
+     Re-redefined, since the implementation in SequencableCollection creates instances with an initial
+     size, which is not allowed for intervals."
 
     ^ self new fromLiteralArrayEncoding:anArray.
 ! !
@@ -204,7 +204,7 @@
      can be reconstructed with #decodeAsLiteralArray."
 
     ^ Array
-        with:self class name asSymbol
+        with:self class name
         with:start
         with:stop
         with:step
@@ -554,5 +554,5 @@
 !Interval class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Interval.st,v 1.42 2005-08-16 16:50:00 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Interval.st,v 1.43 2006-07-03 16:10:10 stefan Exp $'
 ! !