hashtables: fix docs differently.

db4
John Benediktsson 2015-07-14 21:51:02 -07:00
parent 41629dce2f
commit d6d69952e5
1 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
USING: arrays assocs hashtables.private help.markup help.syntax
kernel sequences ;
USING: assocs hashtables.private help.markup help.syntax kernel
sequences ;
IN: hashtables
ARTICLE: "hashtables.private" "Hashtable implementation details"
@ -79,7 +79,7 @@ HELP: new-key@
{ $description "Searches the hashtable for the key using a quadratic probing strategy. If the key is not present in the hashtable, outputs the index where it should be stored." } ;
HELP: set-nth-pair
{ $values { "value" "the second element of the pair" } { "key" "the first element of the pair" } { "array" array } { "n" "an index in the sequence" } }
{ $values { "value" "the second element of the pair" } { "key" "the first element of the pair" } { "array" "the underlying array of the hashtable" } { "n" "an index in the sequence" } }
{ $description "Stores a pair of values into the elements with index " { $snippet "n" } " and " { $snippet "n+1" } ", respectively." }
{ $warning "This word is in the " { $vocab-link "hashtables.private" } " vocabulary because it does not perform bounds checks." }
{ $side-effects "seq" } ;