]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/persistent/heaps/heaps-docs.factor
fix typo in heaps-docs.factor
[factor.git] / basis / persistent / heaps / heaps-docs.factor
index 31422f23b9c894fec7b493a474db310fb30f10b2..5ca92abe330a3a9d4f09d719536dacc51c285bee 100644 (file)
@@ -10,12 +10,12 @@ HELP: <singleton-heap>
 { $description "Creates a new persistent heap consisting of one object with the given priority." } ;
 
 HELP: pheap-empty?
-{ $values { "heap" "a persistent heap" } { "?" "a boolean" } }
+{ $values { "heap" "a persistent heap" } { "?" boolean } }
 { $description "Returns true if this is an empty persistent heap." } ;
 
 HELP: pheap-peek
 { $values { "heap" "a persistent heap" } { "value" "an object in the heap" } { "prio" "the minimum priority" } }
-{ $description "Gets the object in the heap with minumum priority." } ;
+{ $description "Gets the object in the heap with minimum priority." } ;
 
 HELP: pheap-push
 { $values { "value" object } { "prio" "a priority" } { "heap" "a persistent heap" } { "newheap" "a new persistent heap" } }