]> gitweb.factorcode.org Git - factor.git/blobdiff - core/io/encodings/utf16/utf16.factor
factor: Rename GENERIC# to GENERIC#:.
[factor.git] / core / io / encodings / utf16 / utf16.factor
index 2e1b2f560546942284c3151fced92f089efba790..b18db487b2829041f62a5e4018e75629ffb08a14 100644 (file)
@@ -114,7 +114,7 @@ M: utf16le encode-char ( char stream encoding -- )
 : ascii-string>utf16be ( string stream -- )
     [ 1 swap ascii-string>utf16-byte-array ] dip stream-write ; inline
 
-GENERIC# encode-string-utf16le 1 ( string stream -- )
+GENERIC#: encode-string-utf16le 1 ( string stream -- )
 
 M: object encode-string-utf16le
     [ char>utf16le ] curry each ; inline
@@ -126,7 +126,7 @@ M: string encode-string-utf16le
 
 M: utf16le encode-string drop encode-string-utf16le ;
 
-GENERIC# encode-string-utf16be 1 ( string stream -- )
+GENERIC#: encode-string-utf16be 1 ( string stream -- )
 
 M: object encode-string-utf16be
     [ char>utf16be ] curry each ; inline