]> gitweb.factorcode.org Git - factor.git/commitdiff
factor: fix using/docs
authorDoug Coleman <doug.coleman@gmail.com>
Sat, 11 Feb 2023 04:22:15 +0000 (22:22 -0600)
committerDoug Coleman <doug.coleman@gmail.com>
Sun, 26 Feb 2023 23:11:04 +0000 (17:11 -0600)
basis/help/tour/tour.factor
basis/http/client/client.factor
extra/sequences/extras/extras-docs.factor

index c532cba3e8924f6592d54b5e939b24601e508d55..614bd9a26dd92d306d0dd89b98c56df2a160e15a 100644 (file)
@@ -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"
index ce10d8593348f867905e1514daf35e3c074df776..ce237dc4b62509164305dda249d147c29a62d293 100644 (file)
@@ -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 ;
index f21115b99dd562ae66855b9ef54b8808f2173f7b..2a71908fbcfe6e712c8a9790204f462bcc25a750 100644 (file)
@@ -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 }
 } ;