]> gitweb.factorcode.org Git - factor.git/commitdiff
deques: fix help-lint
authorJoe Groff <arcata@gmail.com>
Wed, 9 Nov 2011 07:27:33 +0000 (23:27 -0800)
committerJoe Groff <arcata@gmail.com>
Wed, 9 Nov 2011 07:27:33 +0000 (23:27 -0800)
basis/deques/deques-docs.factor

index 8b86fd2f3f4f3241224e93a4c467ee0a3f6bedab..3823d6108a21033d206cab0a16d67aff589c1aff 100644 (file)
@@ -1,5 +1,5 @@
 USING: help.markup help.syntax kernel math sequences
-quotations ;
+quotations dlists ;
 IN: deques
 
 HELP: deque-empty?
@@ -53,12 +53,12 @@ HELP: peek-front*
 { $contract "Returns the object at the front of the deque, and a boolean indicating if an object was found." } ;
 
 HELP: peek-front
-{ $values { "deque" deque } { "obj" object } }
+{ $values { "dlist" dlist } { "obj" object } }
 { $description "Returns the object at the front of the deque." }
 { $errors "Throws an error if the deque is empty." } ;
 
 HELP: ?peek-front
-{ $values { "deque" deque } { "obj/f" "an object or " { $link f } } }
+{ $values { "dlist" dlist } { "obj/f" "an object or " { $link f } } }
 { $description "A forgiving version of " { $link peek-front } ". If the deque is empty, returns " { $link f } "." } ;
 
 HELP: pop-front
@@ -76,12 +76,12 @@ HELP: peek-back*
 { $contract "Returns the object at the back of the deque, and a boolean indicating if an object was found." } ;
 
 HELP: peek-back
-{ $values { "deque" deque } { "obj" object } }
+{ $values { "dlist" dlist } { "obj" object } }
 { $description "Returns the object at the back of the deque." }
 { $errors "Throws an error if the deque is empty." } ;
 
 HELP: ?peek-back
-{ $values { "deque" deque } { "obj/f" "an object or " { $link f } } }
+{ $values { "dlist" dlist } { "obj/f" "an object or " { $link f } } }
 { $description "A forgiving version of " { $link peek-back } ". If the deque is empty, returns " { $link f } "." } ;
 
 HELP: pop-back