#DOCUMENTATION
authorClaus Gittinger <cg@exept.de>
Fri, 25 Mar 2016 16:44:57 +0100
changeset 19438 d117558a69bd
parent 19437 a769ab315e75
child 19439 6015d8264192
#DOCUMENTATION class: Stream comment/format in: #isReadable #isWritable
Stream.st
--- a/Stream.st	Fri Mar 25 16:44:01 2016 +0100
+++ b/Stream.st	Fri Mar 25 16:44:57 2016 +0100
@@ -276,7 +276,6 @@
 ! !
 
 
-
 !Stream methodsFor:'accessing'!
 
 contents
@@ -2518,7 +2517,7 @@
 !
 
 isReadable
-    "return true, if reading is supported by the recevier.
+    "return true, if reading is supported by the receiver.
      This has to be redefined in concrete subclasses."
 
     ^ self subclassResponsibility
@@ -2527,7 +2526,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."
 
     ^ self subclassResponsibility