about summary refs log tree commit diff
path: root/src/libstd/smallintmap.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstd/smallintmap.rs')
-rw-r--r--src/libstd/smallintmap.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libstd/smallintmap.rs b/src/libstd/smallintmap.rs
index 4535344b968..2173d67b100 100644
--- a/src/libstd/smallintmap.rs
+++ b/src/libstd/smallintmap.rs
@@ -2,10 +2,10 @@
  * A simple map based on a vector for small integer keys. Space requirements
  * are O(highest integer key).
  */
-import core::option;
-import core::option::{Some, None};
-import dvec::DVec;
-import map::map;
+use core::option;
+use core::option::{Some, None};
+use dvec::DVec;
+use map::map;
 
 // FIXME (#2347): Should not be @; there's a bug somewhere in rustc that
 // requires this to be.