From d7c67fc6accfe6274ce55801e5bf0062eab77a15 Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Fri, 25 Mar 2011 00:02:56 -0400 Subject: [PATCH] Fix typo in Ref.Task.Comm --- doc/rust.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/rust.texi b/doc/rust.texi index 4b92fa94d3e..559cb661254 100644 --- a/doc/rust.texi +++ b/doc/rust.texi @@ -1499,7 +1499,7 @@ messages. Ports receive messages from channels. A @dfn{channel} is a communication endpoint that can @emph{send} messages. Channels send messages to ports. -Each port is implicitly boxed and mutable; as such a port has has a unique +Each port is implicitly boxed and mutable; as such a port has a unique per-task identity and cannot be replicated or transmitted. If a port value is copied, both copies refer to the @emph{same} port. New ports can be constructed dynamically and stored in data structures.