#DOCUMENTATION
authorClaus Gittinger <cg@exept.de>
Fri, 25 Mar 2016 16:43:45 +0100
changeset 19436 959346d06370
parent 19435 d410a2d70d68
child 19437 a769ab315e75
#DOCUMENTATION class: ReadStream comment/format in: #isReadable #isWritable
ReadStream.st
--- a/ReadStream.st	Fri Mar 25 16:40:52 2016 +0100
+++ b/ReadStream.st	Fri Mar 25 16:43:45 2016 +0100
@@ -158,7 +158,7 @@
 !
 
 isReadable
-    "return true, if reading is supported by the recevier.
+    "return true, if reading is supported by the receiver.
      Here, true is always returned."
 
     ^ true
@@ -167,7 +167,7 @@
 !
 
 isWritable
-    "return true, if writing is supported by the recevier.
+    "return true, if writing is supported by the receiver.
      This has to be redefined in concrete subclasses."
 
     ^ false