]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/math/binpack/binpack-docs.factor
factor: clean up whitespace in -docs files
[factor.git] / extra / math / binpack / binpack-docs.factor
index 48786b5bddbd9ffae1c6b3dbe61ec1c5a8c9c48a..384645fa1483de9c9222b65a4435044629e6609f 100644 (file)
@@ -6,10 +6,9 @@ USING: help.syntax help.markup kernel assocs sequences quotations ;
 IN: math.binpack
 
 HELP: binpack
-{ $values { "items" sequence } { "#bins" "number of bins" } { "bins" "packed bins" } } 
+{ $values { "items" sequence } { "#bins" "number of bins" } { "bins" "packed bins" } }
 { $description "Packs a sequence of numbers into the specified number of bins." } ;
 
 HELP: map-binpack
-{ $values { "items" sequence } { "quot" { $quotation ( item -- weight ) } } { "#bins" "number of bins" } { "bins" "packed bins" } } 
+{ $values { "items" sequence } { "quot" { $quotation ( item -- weight ) } } { "#bins" "number of bins" } { "bins" "packed bins" } }
 { $description "Packs a sequence of items into the specified number of bins, using the quotation to determine the weight." } ;
-