]> gitweb.factorcode.org Git - factor.git/commitdiff
concurrency.messaging-docs: add a missing parenthesis
authorAlexander Iljin <ajsoft@yandex.ru>
Mon, 4 Sep 2017 22:50:21 +0000 (01:50 +0300)
committerJohn Benediktsson <mrjbq7@gmail.com>
Tue, 16 Jan 2018 21:40:14 +0000 (13:40 -0800)
basis/concurrency/messaging/messaging-docs.factor

index 5c565c0135f5594c00248b43a1a2f11ce3c6dd3c..9daa95873913863030ad894c5b950f8ae963be03 100644 (file)
@@ -8,7 +8,7 @@ HELP: send
 { $values { "message" object }
           { "thread" thread }
 }
-{ $description "Send the message to the thread by placing it in the thread's mailbox. This is an asynchronous operation and will return immediately. The receiving thread will act on the message the next time it retrieves that item from its mailbox (usually using the " { $link receive } " word. The message can be any Factor object. For destinations that are instances of remote-thread the message must be a serializable Factor type." }
+{ $description "Send the message to the thread by placing it in the thread's mailbox. This is an asynchronous operation and will return immediately. The receiving thread will act on the message the next time it retrieves that item from its mailbox (usually using the " { $link receive } " word). The message can be any Factor object. For destinations that are instances of remote-thread the message must be a serializable Factor type." }
 { $see-also receive receive-if } ;
 
 HELP: receive