From 284a91f856703fe1fa1c7ac671a59882015fc1a1 Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Mon, 6 Nov 2017 12:59:00 -0800 Subject: [PATCH] Remove unused import in example --- src/iter/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/iter/mod.rs b/src/iter/mod.rs index 0afbcbc0b..a1c968858 100644 --- a/src/iter/mod.rs +++ b/src/iter/mod.rs @@ -175,7 +175,6 @@ pub trait ParallelIterator: Sized + Send { /// Executes `OP` on each item produced by the iterator, in parallel. /// /// ``` - /// use std::sync::mpsc::channel; /// use rayon::prelude::*; /// (0..100).into_par_iter().for_each(|x| println!("{}", x)); /// ```