]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/formatting/formatting.factor
factor: words -> split-words, lines -> split-lines, fix errors
[factor.git] / basis / formatting / formatting.factor
index 494acbb448a0fc139196f56af1f7d6c28e14e149..4ed90e8006809550587dfdfff63d8ba8be0d3ce8 100644 (file)
@@ -201,7 +201,7 @@ MACRO: sprintf ( format-string -- quot )
           [ >time ]
           [ year>> number>string ]
        } cleave
-    ] output>array unwords ; inline
+    ] output>array join-words ; inline
 
 : week-of-year ( timestamp day -- n )
     [ dup clone 1 >>month 1 >>day day-of-week dup ] dip > [ 7 swap - ] when