]> gitweb.factorcode.org Git - factor.git/blobdiff - core/io/encodings/utf8/utf8.factor
factor: Rename GENERIC# to GENERIC#:.
[factor.git] / core / io / encodings / utf8 / utf8.factor
index 4979daad15bd1c5b06b289d4a24b568c919a8759..0ac41b581251143a58a575809131f5294e233125 100644 (file)
@@ -84,7 +84,7 @@ M: utf8 decode-until (decode-until) ;
 M: utf8 encode-char
     drop char>utf8 ;
 
-GENERIC# encode-string-utf8 1 ( string stream -- )
+GENERIC#: encode-string-utf8 1 ( string stream -- )
 
 M: object encode-string-utf8
     [ char>utf8 ] curry each ; inline