]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/formatting/formatting.factor
factor: fix some spacing
[factor.git] / basis / formatting / formatting.factor
index 1f5663c959ef9fa920ce8b16b6fcf705875dff31..f02c16de64d7f80a92cc09d3f48ec6bb10ad64ea 100644 (file)
@@ -195,11 +195,11 @@ MACRO: sprintf ( format-string -- quot )
 : >datetime ( timestamp -- string )
     [
        {
-          [ day-of-week day-abbreviation3 ]
-          [ month>> month-abbreviation ]
-          [ day>> pad-00 ]
-          [ >time ]
-          [ year>> number>string ]
+            [ day-of-week day-abbreviation3 ]
+            [ month>> month-abbreviation ]
+            [ day>> pad-00 ]
+            [ >time ]
+            [ year>> number>string ]
        } cleave
     ] output>array join-words ; inline