TextStream.st
changeset 3480 4afdd00dd4c1
parent 3001 314f68c6ad13
child 3833 bd6ce7a78e48
--- a/TextStream.st	Thu Feb 05 19:01:11 2015 +0100
+++ b/TextStream.st	Tue Feb 10 14:26:00 2015 +0100
@@ -11,6 +11,8 @@
 "
 "{ Package: 'stx:libbasic2' }"
 
+"{ NameSpace: Smalltalk }"
+
 CharacterWriteStream subclass:#TextStream
 	instanceVariableNames:'runs currentEmphasis'
 	classVariableNames:''
@@ -41,7 +43,7 @@
     however, in addition to collecting characters, it keeps
     track of any change of the emphasis, and returns a Text instance
     as its contents (in contrast to a String instance).
-    Can be used to collect up attributed text.
+    Used to collect attributed text.
 
     [author:]
         Claus Gittinger
@@ -50,7 +52,6 @@
         WriteStream
         Text String
 "
-
 !
 
 examples
@@ -258,10 +259,10 @@
 !TextStream class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/TextStream.st,v 1.15 2013-06-03 17:50:14 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/TextStream.st,v 1.16 2015-02-10 13:26:00 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic2/TextStream.st,v 1.15 2013-06-03 17:50:14 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/TextStream.st,v 1.16 2015-02-10 13:26:00 cg Exp $'
 ! !