]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/json/writer/writer.factor
Fix comments to be ! not #!.
[factor.git] / basis / json / writer / writer.factor
index 9795b993e18de433da475498372fd46e027e698d..2d5e4ca4c62e3e1a26940e518bc17eacb7acc79c 100644 (file)
@@ -28,7 +28,7 @@ GENERIC# stream-json-print 1 ( obj stream -- )
     output-stream get stream-json-print ;
 
 : >json ( obj -- string )
-    #! Returns a string representing the factor object in JSON format
+    ! Returns a string representing the factor object in JSON format
     [ json-print ] with-string-writer ;
 
 M: f stream-json-print