From 67deb2e65e150a1b9b2fcd457da47e3e13b2c4f7 Mon Sep 17 00:00:00 2001 From: Patrick Walton Date: Mon, 18 Aug 2014 08:29:44 -0700 Subject: libsyntax: Remove the `use foo = bar` syntax from the language in favor of `use bar as foo`. Change all uses of `use foo = bar` to `use bar as foo`. Implements RFC #47. Closes #16461. [breaking-change] --- src/libstd/sync/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/libstd/sync') diff --git a/src/libstd/sync/mod.rs b/src/libstd/sync/mod.rs index c9526a64f46..8cfa1ebd598 100644 --- a/src/libstd/sync/mod.rs +++ b/src/libstd/sync/mod.rs @@ -27,7 +27,7 @@ pub use core_sync::{Semaphore, SemaphoreGuard}; pub use core_sync::one::{Once, ONCE_INIT}; #[deprecated = "use atomic instead"] -pub use atomics = core_sync::atomic; +pub use core_sync::atomic as atomics; pub use self::future::Future; pub use self::task_pool::TaskPool; -- cgit 1.4.1-3-g733a5