WriteStream.st
changeset 88 81dacba7a63a
parent 77 6c38ca59927f
child 95 d22739a0c6e9
--- a/WriteStream.st	Thu Jun 02 13:36:22 1994 +0200
+++ b/WriteStream.st	Thu Jun 02 18:22:49 1994 +0200
@@ -18,20 +18,38 @@
 !
 
 WriteStream comment:'
-
 COPYRIGHT (c) 1989 by Claus Gittinger
               All Rights Reserved
-
-$Header: /cvs/stx/stx/libbasic/WriteStream.st,v 1.8 1994-05-17 10:09:46 claus Exp $
 '!
 
 !WriteStream class methodsFor:'documentation'!
 
+copyright
+"
+ COPYRIGHT (c) 1989 by Claus Gittinger
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+!
+
+version
+"
+$Header: /cvs/stx/stx/libbasic/WriteStream.st,v 1.9 1994-06-02 16:22:49 claus Exp $
+"
+!
+
 documentation
 "
-    Streams for writing into - this implementation currently DOES change the identity if the
-    streamed-upon collection if it cannot grow. Thus its slightly incompatible to ST-80 since
-    aStream contents does not always return the original collection. This may change.
+    Streams for writing into - this implementation currently DOES change the 
+    identity if the streamed-upon collection IF it cannot grow. 
+    Thus it is slightly incompatible to ST-80 since 'aStream contents' does 
+    not always return the original collection. This may change.
 "
 ! !