]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/json/writer/writer.factor
factor: Rename GENERIC# to GENERIC#:.
[factor.git] / basis / json / writer / writer.factor
index 8e6e1784cf69db9dc44bea6b5064fabf902b9a1e..4f91e7eb6a487289e266cee1cac4ce4e26e298ee 100644 (file)
@@ -22,7 +22,7 @@ SYMBOL: json-escape-unicode?
 f json-escape-unicode? set-global
 
 ! Writes the object out to a stream in JSON format
-GENERIC# stream-json-print 1 ( obj stream -- )
+GENERIC#: stream-json-print 1 ( obj stream -- )
 
 : json-print ( obj -- )
     output-stream get stream-json-print ;