From: Ikko Ashimine Date: Thu, 18 Aug 2022 17:15:13 +0000 (+0900) Subject: fix typo in heaps-docs.factor X-Git-Tag: 0.99~1124 X-Git-Url: https://gitweb.factorcode.org/gitweb.cgi?p=factor.git;a=commitdiff_plain;h=5809cde3222f985f318e628ce14a35d62c2fafcc fix typo in heaps-docs.factor minumum -> minimum --- diff --git a/basis/persistent/heaps/heaps-docs.factor b/basis/persistent/heaps/heaps-docs.factor index 3da6578d54..5ca92abe33 100644 --- a/basis/persistent/heaps/heaps-docs.factor +++ b/basis/persistent/heaps/heaps-docs.factor @@ -15,7 +15,7 @@ HELP: pheap-empty? 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" } }