]> git.lizzy.rs Git - rust.git/commitdiff
In DuplexStream explanation: change 'There' to 'The'.
authorJim Blandy <jimb@red-bean.com>
Tue, 4 Sep 2012 07:40:18 +0000 (00:40 -0700)
committerJim Blandy <jimb@red-bean.com>
Tue, 4 Sep 2012 08:12:12 +0000 (01:12 -0700)
doc/tutorial.md

index 4743e384633da57ecf5c35014750d82d901c74cd..e639ce6e9f40dfff26118a6ff03771070efcf4d5 100644 (file)
@@ -2593,7 +2593,7 @@ let result = port.recv();
 ## Creating a task with a bi-directional communication path
 
 A very common thing to do is to spawn a child task where the parent
-and child both need to exchange messages with each other. There
+and child both need to exchange messages with each other. The
 function `std::comm::DuplexStream()` supports this pattern.  We'll
 look briefly at how it is used.