ArrayedCollection.st
changeset 293 31df3850e98c
parent 280 0b0a9aa198b5
child 302 1f76060d58a4
--- a/ArrayedCollection.st	Wed Mar 01 02:42:40 1995 +0100
+++ b/ArrayedCollection.st	Mon Mar 06 20:18:25 1995 +0100
@@ -21,7 +21,7 @@
 COPYRIGHT (c) 1989 by Claus Gittinger
 	      All Rights Reserved
 
-$Header: /cvs/stx/stx/libbasic/ArrayedCollection.st,v 1.14 1995-02-24 16:32:14 claus Exp $
+$Header: /cvs/stx/stx/libbasic/ArrayedCollection.st,v 1.15 1995-03-06 19:14:42 claus Exp $
 '!
 
 !ArrayedCollection class methodsFor:'documentation'!
@@ -42,7 +42,7 @@
 
 version
 "
-$Header: /cvs/stx/stx/libbasic/ArrayedCollection.st,v 1.14 1995-02-24 16:32:14 claus Exp $
+$Header: /cvs/stx/stx/libbasic/ArrayedCollection.st,v 1.15 1995-03-06 19:14:42 claus Exp $
 "
 !
 
@@ -272,7 +272,7 @@
 
     thisContext isRecursive ifTrue:[
 	Transcript showCr:'Error: storeOn: of self referencing collection.'.
-	aStream nextPutAll:'#("recursive")'.
+	aStream nextPutAll:'#recursive'.
 	^ self
     ].
 
@@ -294,6 +294,6 @@
     aStream nextPut:$)
 
     "
-     (Array with:(1@2) with:(1->2)) storeString
+     (Array with:(1@2) with:(1->2)) storeString    
     "
 ! !