about summary refs log tree commit diff
path: root/src/libcore/core.rc
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2012-09-07 18:08:21 -0700
committerBrian Anderson <banderson@mozilla.com>2012-09-10 19:04:26 -0700
commit298eb8c7260fe321e30d9c5e22f4ecefc82c4f64 (patch)
treeddd18bdc6c940595bd1df41cfa5d414ffa862a5d /src/libcore/core.rc
parent1a8a0a77b14c44d98501cd9fb0f14ed88d4c38d9 (diff)
Convert 'import' to 'use'. Remove 'import' keyword.
Diffstat (limited to 'src/libcore/core.rc')
-rw-r--r--src/libcore/core.rc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libcore/core.rc b/src/libcore/core.rc
index c0c9cf5f9b6..ea736d81a95 100644
--- a/src/libcore/core.rc
+++ b/src/libcore/core.rc
@@ -75,7 +75,7 @@ export priv;
 /// Operations and constants for `int`
 #[path = "int-template"]
 mod int {
-    import inst::{ hash, pow };
+    use inst::{ hash, pow };
     export hash, pow;
     #[path = "int.rs"]
     mod inst;
@@ -112,7 +112,7 @@ mod i64 {
 /// Operations and constants for `uint`
 #[path = "uint-template"]
 mod uint {
-    import inst::{
+    use inst::{
         div_ceil, div_round, div_floor, hash, iterate,
         next_power_of_two
     };
@@ -126,7 +126,7 @@ mod uint {
 /// Operations and constants for `u8`
 #[path = "uint-template"]
 mod u8 {
-    import inst::is_ascii;
+    use inst::is_ascii;
     export is_ascii;
 
     #[path = "u8.rs"]