]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/io/streams/duplex/duplex.factor
Fix comments to be ! not #!.
[factor.git] / basis / io / streams / duplex / duplex.factor
index ddc5974bdedaf3abd12d121e167817b97701c8eb..fc1a55fc00b4a3d5245cec3eb6693676091f015f 100644 (file)
@@ -27,9 +27,9 @@ M: duplex-stream set-timeout
     >duplex-stream< [ set-timeout ] bi-curry@ bi ;
 
 M: duplex-stream dispose
-    #! The output stream is closed first, in case both streams
-    #! are attached to the same file descriptor, the output
-    #! buffer needs to be flushed before we close the fd.
+    ! The output stream is closed first, in case both streams
+    ! are attached to the same file descriptor, the output
+    ! buffer needs to be flushed before we close the fd.
     [ >duplex-stream< [ &dispose drop ] bi@ ] with-destructors ;
 
 : <encoder-duplex> ( stream-in stream-out encoding -- duplex )