about summary refs log tree commit diff
path: root/src/libstd/sync/mpsc/shared.rs
diff options
context:
space:
mode:
authorJorge Aparicio <japaricious@gmail.com>2015-01-03 22:42:21 -0500
committerJorge Aparicio <japaricious@gmail.com>2015-01-03 22:42:21 -0500
commit56dcbd17fdad5d39b7b02e22a7490d2468718d08 (patch)
treeb846c1e3a491e54feca36375f4894e5cc882528e /src/libstd/sync/mpsc/shared.rs
parentc6c786671d692d7b13c2e5c68a53001327b4b125 (diff)
downloadrust-56dcbd17fdad5d39b7b02e22a7490d2468718d08.tar.gz
rust-56dcbd17fdad5d39b7b02e22a7490d2468718d08.zip
sed -i -s 's/\bmod,/self,/g' **/*.rs
Diffstat (limited to 'src/libstd/sync/mpsc/shared.rs')
-rw-r--r--src/libstd/sync/mpsc/shared.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sync/mpsc/shared.rs b/src/libstd/sync/mpsc/shared.rs
index e15c38cf9a1..cadac8e6272 100644
--- a/src/libstd/sync/mpsc/shared.rs
+++ b/src/libstd/sync/mpsc/shared.rs
@@ -27,7 +27,7 @@ use core::int;
 
 use sync::{atomic, Mutex, MutexGuard};
 use sync::mpsc::mpsc_queue as mpsc;
-use sync::mpsc::blocking::{mod, SignalToken};
+use sync::mpsc::blocking::{self, SignalToken};
 use sync::mpsc::select::StartResult;
 use sync::mpsc::select::StartResult::*;
 use thread::Thread;