diff options
| author | Brian Anderson <banderson@mozilla.com> | 2012-09-07 18:08:21 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2012-09-10 19:04:26 -0700 |
| commit | 298eb8c7260fe321e30d9c5e22f4ecefc82c4f64 (patch) | |
| tree | ddd18bdc6c940595bd1df41cfa5d414ffa862a5d /src/libstd/timer.rs | |
| parent | 1a8a0a77b14c44d98501cd9fb0f14ed88d4c38d9 (diff) | |
| download | rust-298eb8c7260fe321e30d9c5e22f4ecefc82c4f64.tar.gz rust-298eb8c7260fe321e30d9c5e22f4ecefc82c4f64.zip | |
Convert 'import' to 'use'. Remove 'import' keyword.
Diffstat (limited to 'src/libstd/timer.rs')
| -rw-r--r-- | src/libstd/timer.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/timer.rs b/src/libstd/timer.rs index bda489c3ba7..9b6a2b85852 100644 --- a/src/libstd/timer.rs +++ b/src/libstd/timer.rs @@ -181,7 +181,7 @@ mod test { for spec.each |spec| { let (times, maxms) = spec; do task::spawn { - import rand::*; + use rand::*; let rng = Rng(); for iter::repeat(times) { sleep(hl_loop, rng.next() as uint % maxms); |
