deques: fix help-lint

db4
Joe Groff 2011-11-08 23:27:33 -08:00
parent c0094186a1
commit 97a048fdc1
1 changed files with 5 additions and 5 deletions

View 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