]> gitweb.factorcode.org Git - factor.git/blobdiff - core/io/streams/c/c.factor
Fix comments to be ! not #!.
[factor.git] / core / io / streams / c / c.factor
index 455b1176a33f2ac966e790b46b97d8420b74dce0..8dc14ef55f9f9b1657c2919d0480eeef6bfbf05a 100644 (file)
@@ -93,10 +93,10 @@ M: c-io-backend (file-appender)
     "ab" fopen <c-writer> ;
 
 : show ( msg -- )
-    #! A word which directly calls primitives. It is used to
-    #! print stuff from contexts where the I/O system would
-    #! otherwise not work (tools.deploy.shaker, the I/O
-    #! multiplexer thread).
+    ! A word which directly calls primitives. It is used to
+    ! print stuff from contexts where the I/O system would
+    ! otherwise not work (tools.deploy.shaker, the I/O
+    ! multiplexer thread).
     "\n" append >byte-array dup length
     stdout-handle fwrite
     stdout-handle fflush ;