]> gitweb.factorcode.org Git - factor.git/commitdiff
fix stack comments
authorSlava Pestov <slava@factorcode.org>
Thu, 19 Jan 2006 23:19:55 +0000 (23:19 +0000)
committerSlava Pestov <slava@factorcode.org>
Thu, 19 Jan 2006 23:19:55 +0000 (23:19 +0000)
TODO.FACTOR.txt
library/syntax/see.factor

index 9491ed3795351dbb794eb4cd1c26f84e277c8bac..e18fb04798a0a11b3ee5077838cb3fda97da86d3 100644 (file)
@@ -46,9 +46,6 @@
 \r
 - implement 3.3 floor  4.7 ceiling\r
 \r
-- fix stack effect comment spacing in help for words without docs,\r
-       eg (object -- object object) -> ( object -- object object )\r
-\r
 ALL TESTS BELOW FAIL ON x86 linux 32bit\r
 - float not commutative bug\r
   : a 237241607 1516.925984289192 3036109462846 913470293/554864\r
index 769be52646514b1bf80eb4a63d975163c0100e4d..b8b80fa001fb25657ffb03eb920ea1b099d64bdb 100644 (file)
@@ -30,11 +30,11 @@ sequences strings styles words ;
 
 : effect>string ( effect -- string )
     [
-        "(" %
+        "( " %
         dup first stack-picture %
         " -- " %
         second stack-picture %
-        ")" %
+        " )" %
     ] "" make ;
 
 : stack-effect ( word -- string )