diff --git a/core/hashtables/hashtables-docs.factor b/core/hashtables/hashtables-docs.factor index 5ccf6f3829..e79d405f12 100644 --- a/core/hashtables/hashtables-docs.factor +++ b/core/hashtables/hashtables-docs.factor @@ -1,5 +1,5 @@ -USING: assocs hashtables.private help.markup help.syntax kernel -sequences ; +USING: arrays 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" } { "seq" sequence } { "n" "an index in the sequence" } } +{ $values { "value" "the second element of the pair" } { "key" "the first element of the pair" } { "array" array } { "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" } ; diff --git a/core/words/words-docs.factor b/core/words/words-docs.factor index 803d1694c7..4226e25a40 100644 --- a/core/words/words-docs.factor +++ b/core/words/words-docs.factor @@ -357,7 +357,7 @@ HELP: subwords { $example "USING: math.functions prettyprint words ;" "\\ sin subwords ." - "{ M\\ object sin M\\ float sin M\\ complex sin M\\ real sin }" + "{ M\\ object sin M\\ complex sin M\\ real sin M\\ float sin }" } } { $notes "Outputs " { $link f } " if the word isn't generic." } ; diff --git a/extra/html/parser/printer/printer-tests.factor b/extra/html/parser/printer/printer-tests.factor index c0b59db408..3c91e9765d 100644 --- a/extra/html/parser/printer/printer-tests.factor +++ b/extra/html/parser/printer/printer-tests.factor @@ -13,7 +13,7 @@ IN: html.parser.printer.tests ] unit-test { - " rel='nofollow' href='http://www.google.com'" + " href='http://www.google.com' rel='nofollow'" } [ H{ { "href" "http://www.google.com" } { "rel" "nofollow" } } [ print-attributes ] with-string-writer diff --git a/extra/yaml/yaml-docs.factor b/extra/yaml/yaml-docs.factor index a96f516787..6e73136b32 100644 --- a/extra/yaml/yaml-docs.factor +++ b/extra/yaml/yaml-docs.factor @@ -164,7 +164,7 @@ foo: 1 <<: baz: 3 " yaml> .""" -"""H{ { "bar" 2 } { "foo" 1 } { "baz" 3 } }""" } +"""H{ { "baz" 3 } { "foo" 1 } { "bar" 2 } }""" } { $heading "!!value" } "See " { $url "http://yaml.org/type/value.html" } $nl { $example """USING: yaml prettyprint ;