about summary refs log tree commit diff
path: root/doc/tutorial-tasks.md
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2013-02-26 01:23:36 -0500
committerAlex Crichton <alex@alexcrichton.com>2013-02-26 17:52:16 -0500
commitdf481473dae024e522afd669646fa779d97c5e2d (patch)
tree5c6149fb10e35de5b05350a8c00814bbbbaccb3b /doc/tutorial-tasks.md
parent681e6dd40d5882465f74eebf2f1802c76b0df063 (diff)
downloadrust-df481473dae024e522afd669646fa779d97c5e2d.tar.gz
rust-df481473dae024e522afd669646fa779d97c5e2d.zip
Fix unused imports in the tutorials
Diffstat (limited to 'doc/tutorial-tasks.md')
-rw-r--r--doc/tutorial-tasks.md2
1 files changed, 0 insertions, 2 deletions
diff --git a/doc/tutorial-tasks.md b/doc/tutorial-tasks.md
index c0f9a376270..22d0ff8bf78 100644
--- a/doc/tutorial-tasks.md
+++ b/doc/tutorial-tasks.md
@@ -468,7 +468,6 @@ Here is the function that implements the child task:
 
 ~~~~
 # use std::comm::DuplexStream;
-# use comm::{Port, Chan};
 fn stringifier(channel: &DuplexStream<~str, uint>) {
     let mut value: uint;
     loop {
@@ -491,7 +490,6 @@ Here is the code for the parent task:
 
 ~~~~
 # use std::comm::DuplexStream;
-# use comm::{Port, Chan};
 # use task::spawn;
 # fn stringifier(channel: &DuplexStream<~str, uint>) {
 #     let mut value: uint;