PipeStream.st
changeset 22507 eb40c1d02504
parent 22440 a5f9b3aed756
child 22696 7b933d672ea3
--- a/PipeStream.st	Thu Jan 25 16:56:58 2018 +0100
+++ b/PipeStream.st	Thu Jan 25 19:41:20 2018 +0100
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 1989 by Claus Gittinger
 	      All Rights Reserved
@@ -224,7 +222,7 @@
 	|p|
 
 	p := PipeStream bidirectionalFor:'cat -u'.
-	p nextPutAll:'Wer ist der Bürgermeister von Wesel'; cr.
+	p nextPutAll:'Wer ist der Bürgermeister von Wesel'; cr.
 	Transcript showCR:p nextLine.
 	p close
     "
@@ -687,7 +685,7 @@
         "successful creation of subprocess"
         handle := myPipeEnd handle.
         handleType := myPipeEnd handleType.
-        myPipeEnd unregisterForFinalization.    "make sure filedesciptor is not closed by finalizer"
+        myPipeEnd unregisterForFinalization.    "make sure filedescriptor is not closed by finalizer"
         myPipeEnd := nil.
     ] ifFalse:[
         "the pipe open failed for some reason ...
@@ -704,7 +702,7 @@
     "Modified: / 23-04-1996 / 17:05:59 / stefan"
     "Modified: / 28-01-1998 / 14:47:34 / md"
     "Created: / 19-05-1999 / 12:28:54 / cg"
-    "Modified (format): / 12-06-2017 / 12:31:24 / mawalch"
+    "Modified (comment): / 25-01-2018 / 19:40:27 / mawalch"
 !
 
 terminatePipeCommand