diff options
| author | Patrick Walton <pcwalton@mimiga.net> | 2012-09-04 11:23:53 -0700 |
|---|---|---|
| committer | Patrick Walton <pcwalton@mimiga.net> | 2012-09-04 11:23:53 -0700 |
| commit | 2d690ae43f77a6c4e1f8ba10afd32926e2459e8e (patch) | |
| tree | abbd9c1b0d1be50ebc34a49e4d927113b4ecde49 /src/libstd/smallintmap.rs | |
| parent | 437073868e590ff8d1aae7a6fad1d8c49056f0b0 (diff) | |
| download | rust-2d690ae43f77a6c4e1f8ba10afd32926e2459e8e.tar.gz rust-2d690ae43f77a6c4e1f8ba10afd32926e2459e8e.zip | |
libstd: "import" -> "use"
Diffstat (limited to 'src/libstd/smallintmap.rs')
| -rw-r--r-- | src/libstd/smallintmap.rs | 8 |
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. |
