about summary refs log tree commit diff
path: root/src/libstd/sync/mod.rs
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2018-06-15 04:07:09 +0200
committerSimon Sapin <simon.sapin@exyr.org>2018-06-29 14:01:33 +0200
commitc7638edf5293dd471d951e64671d60febd0b628c (patch)
treec488773dadb9695cb77c609d2e3198031ce3cf13 /src/libstd/sync/mod.rs
parent3394fb7bb7f08c045f9a82bb92272418c855859d (diff)
downloadrust-c7638edf5293dd471d951e64671d60febd0b628c.tar.gz
rust-c7638edf5293dd471d951e64671d60febd0b628c.zip
Rename alloc::arc to alloc::sync, to match std::sync
Diffstat (limited to 'src/libstd/sync/mod.rs')
-rw-r--r--src/libstd/sync/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sync/mod.rs b/src/libstd/sync/mod.rs
index 642b284c6c7..e12ef8d9eda 100644
--- a/src/libstd/sync/mod.rs
+++ b/src/libstd/sync/mod.rs
@@ -18,7 +18,7 @@
 #![stable(feature = "rust1", since = "1.0.0")]
 
 #[stable(feature = "rust1", since = "1.0.0")]
-pub use alloc_crate::arc::{Arc, Weak};
+pub use alloc_crate::sync::{Arc, Weak};
 #[stable(feature = "rust1", since = "1.0.0")]
 pub use core::sync::atomic;