#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Thu, 22 Sep 2016 15:16:34 +0200
changeset 20425 a859a0719330
parent 20424 997f83bb29f8
child 20426 2ec010b1a559
#DOCUMENTATION by cg class: ReadWriteStream comment/format in: #isReadable #readStream
ReadWriteStream.st
--- a/ReadWriteStream.st	Thu Sep 22 15:16:22 2016 +0200
+++ b/ReadWriteStream.st	Thu Sep 22 15:16:34 2016 +0200
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1989 by Claus Gittinger
 	      All Rights Reserved
@@ -157,7 +159,7 @@
 !ReadWriteStream methodsFor:'converting'!
 
 readStream
-    "return the receiver as a readStream - thats myself"
+    "return the receiver as a readStream - that's myself"
 
     ^ self
 
@@ -185,7 +187,7 @@
 !ReadWriteStream methodsFor:'queries'!
 
 isReadable 
-    "return true if the receiver supports reading - thats true"
+    "return true if the receiver supports reading - that's true"
 
     ^ true
 !