]> gitweb.factorcode.org Git - factor.git/commitdiff
basis: fix using lists a little
authorDoug Coleman <doug.coleman@gmail.com>
Sun, 13 Feb 2022 17:59:41 +0000 (11:59 -0600)
committerDoug Coleman <doug.coleman@gmail.com>
Sun, 13 Feb 2022 18:13:01 +0000 (12:13 -0600)
basis/concurrency/messaging/messaging-docs.factor
basis/grouping/grouping-docs.factor

index 9daa95873913863030ad894c5b950f8ae963be03..b63ddefb83235ad4259ed979ad1e3dca61458eef 100644 (file)
@@ -61,7 +61,7 @@ ARTICLE: "concurrency-synchronous-sends" "Synchronous sends"
 { $subsections reply-synchronous handle-synchronous }
 "An example:"
 { $example
-    "USING: concurrency.messaging threads ;"
+    "USING: concurrency.messaging kernel threads ;"
     "IN: scratchpad"
     ": pong-server ( -- )"
     "    [ drop \"pong\" ] handle-synchronous ;"
index 0126935806fb7b7a5c5d8cee61146a2e9d6a10e7..4144f4c2548ea99787fc42022de760124cb07992 100644 (file)
@@ -18,7 +18,7 @@ ARTICLE: "grouping" "Groups and clumps"
 { $list
     { "With groups, the subsequences form the original sequence when concatenated:"
         { $example
-            "USING: grouping ;"
+            "USING: grouping prettyprint ;"
             "{ 1 2 3 4 } 2 group ."
             "{ { 1 2 } { 3 4 } }"
         }