]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/sorting/human/human-docs.factor
factor: fix some spacing
[factor.git] / basis / sorting / human / human-docs.factor
index 0c9dac3a09ac083627426563b4fe90887650a7f6..04066020ca92554251ac33a26b07a217b5d26b39 100644 (file)
@@ -5,22 +5,22 @@ IN: sorting.human
 
 HELP: find-numbers
 { $values
-     { "sequence" sequence }
-     { "sequence'" sequence }
+    { "sequence" sequence }
+    { "sequence'" sequence }
 }
 { $description "Splits a string on numbers and returns a sequence of sequences and integers." } ;
 
 HELP: human<=>
 { $values
-     { "obj1" object } { "obj2" object }
-     { "<=>" "an ordering specifier" }
+    { "obj1" object } { "obj2" object }
+    { "<=>" "an ordering specifier" }
 }
 { $description "Compares two objects after converting numbers in the string into integers." } ;
 
 HELP: human>=<
 { $values
-     { "obj1" object } { "obj2" object }
-     { ">=<" "an ordering specifier" }
+    { "obj1" object } { "obj2" object }
+    { ">=<" "an ordering specifier" }
 }
 { $description "Compares two objects using the " { $link human<=> } " word and inverts the result." } ;