]> gitweb.factorcode.org Git - factor.git/commitdiff
sorting.slots: help lint
authorSlava Pestov <slava@slava-pestovs-macbook-pro.local>
Sun, 19 Apr 2009 00:52:12 +0000 (19:52 -0500)
committerSlava Pestov <slava@slava-pestovs-macbook-pro.local>
Sun, 19 Apr 2009 00:52:12 +0000 (19:52 -0500)
basis/sorting/slots/slots-docs.factor

index 5960c451fe776100a9f4f13cd64fd67f5ee39967..beb378d4bd8ee54eae769c566f40ece8dae64f02 100644 (file)
@@ -6,8 +6,10 @@ IN: sorting.slots
 
 HELP: compare-slots
 { $values
-     { "sort-specs" "a sequence of accessors ending with a comparator" }
-     { "<=>" { $link +lt+ } " " { $link +eq+ } " or " { $link +gt+ } }
+  { "obj1" object }
+  { "obj2" object }
+  { "sort-specs" "a sequence of accessors ending with a comparator" }
+  { "<=>" { $link +lt+ } " " { $link +eq+ } " or " { $link +gt+ } }
 }
 { $description "Compares two objects using a chain of intrinsic linear orders such that if two objects are " { $link +eq+ } ", then the next comparator is tried. The comparators are slot-name/comparator pairs." } ;
 
@@ -27,7 +29,7 @@ HELP: sort-by
         "    T{ sort-me f 2 3 } T{ sort-me f 3 2 }"
         "    T{ sort-me f 4 3 } T{ sort-me f 2 1 }"
         "}"
-        "{ { a>> <=> } { b>> >=< } } sort-by-slots ."
+        "{ { a>> <=> } { b>> >=< } } sort-by ."
         "{\n    T{ sort-me { a 2 } { b 3 } }\n    T{ sort-me { a 2 } { b 1 } }\n    T{ sort-me { a 3 } { b 2 } }\n    T{ sort-me { a 4 } { b 3 } }\n}"
     }
 } ;