class: ReadWriteStream
authorClaus Gittinger <cg@exept.de>
Tue, 23 Dec 2014 16:39:03 +0100
changeset 17245 4832da8d7f31
parent 17244 2d730416819c
child 17246 0e609e06e051
class: ReadWriteStream comment/format in: #resetPosition
ReadWriteStream.st
--- a/ReadWriteStream.st	Tue Dec 23 13:38:49 2014 +0100
+++ b/ReadWriteStream.st	Tue Dec 23 16:39:03 2014 +0100
@@ -138,7 +138,7 @@
 resetPosition
     "set the read position to the beginning of the collection.
      Because I am a read/write stream, the readLimit is set to the current write position.
-     Thus, the just written data can be readback."
+     Thus, the just written data can be read back."
 
     readLimit := position max:readLimit.
     super resetPosition
@@ -189,10 +189,10 @@
 !ReadWriteStream class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ReadWriteStream.st,v 1.35 2014-12-09 16:27:48 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ReadWriteStream.st,v 1.36 2014-12-23 15:39:03 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/ReadWriteStream.st,v 1.35 2014-12-09 16:27:48 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ReadWriteStream.st,v 1.36 2014-12-23 15:39:03 cg Exp $'
 ! !