From ee0c6356643f259b4819d5d8b85339e37446fa0f Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Fri, 10 Feb 2023 22:22:15 -0600 Subject: [PATCH] factor: fix using/docs --- basis/help/tour/tour.factor | 2 +- basis/http/client/client.factor | 14 +++++++------- extra/sequences/extras/extras-docs.factor | 6 +++--- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/basis/help/tour/tour.factor b/basis/help/tour/tour.factor index c532cba3e8..614bd9a26d 100644 --- a/basis/help/tour/tour.factor +++ b/basis/help/tour/tour.factor @@ -1314,7 +1314,7 @@ the results of your efforts under { $url "https://localhost:8080/chloe" } . Noti can change the main responder dynamically. This ends our very brief tour of Furnace. Furnace is much more expansive than the examples shown here, as it allows for many general web -tasks. You can learn more about it in the { $link "furnace" } documentation. +tasks. You can learn more about it in the { $vocab-link "furnace" } documentation. ; ARTICLE: "tour-processes" "Processes and Channels" diff --git a/basis/http/client/client.factor b/basis/http/client/client.factor index ce10d85933..ce237dc4b6 100644 --- a/basis/http/client/client.factor +++ b/basis/http/client/client.factor @@ -1,13 +1,13 @@ ! Copyright (C) 2005, 2010 Slava Pestov. ! See https://factorcode.org/license.txt for BSD license. USING: accessors ascii assocs calendar combinators -combinators.short-circuit destructors environment hashtables -http http.client.post-data http.parsers io io.crlf io.encodings -io.encodings.ascii io.encodings.binary io.encodings.iana -io.encodings.string io.files io.pathnames io.sockets -io.sockets.secure io.timeouts kernel math math.order math.parser -mime.types namespaces present sequences splitting urls -vocabs.loader ; +combinators.short-circuit destructors effects environment +hashtables http http.client.post-data http.parsers io io.crlf +io.encodings io.encodings.ascii io.encodings.binary +io.encodings.iana io.encodings.string io.files io.pathnames +io.sockets io.sockets.secure io.timeouts kernel math math.order +math.parser mime.types namespaces present sequences splitting +urls vocabs.loader ; IN: http.client ERROR: too-many-redirects ; diff --git a/extra/sequences/extras/extras-docs.factor b/extra/sequences/extras/extras-docs.factor index f21115b99d..2a71908fbc 100644 --- a/extra/sequences/extras/extras-docs.factor +++ b/extra/sequences/extras/extras-docs.factor @@ -947,14 +947,14 @@ HELP: map-find-last-index HELP: map-from { $values - { "seq" sequence } { "quot" quotation } { "i" integer } + { "seq" sequence } { "quot" quotation } { "from" integer } { "newseq" sequence } } { $description "A version of " { $link map } " that maps the slice of " { $snippet "seq" } " beginning at index " { $snippet "i" } "." } ; HELP: map-from-as { $values - { "seq" sequence } { "quot" quotation } { "i" integer } { "exemplar" object } + { "seq" sequence } { "quot" quotation } { "from" integer } { "exemplar" object } { "newseq" sequence } } { $description "A version of " { $link map-from } " where the resultant sequence has the same class as " { $snippet "exemplar" } } ; @@ -1128,7 +1128,7 @@ HELP: push-if-index HELP: reduce-from { $values - { "seq" sequence } { "identity" object } { "quot" quotation } { "i" integer } + { "seq" sequence } { "identity" object } { "quot" quotation } { "from" integer } { "result" object } } ; -- 2.34.1