mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-31 21:17:46 +00:00
s/mod/self/ in imports
This commit is contained in:
parent
48f129ea49
commit
f580275ef8
4 changed files with 4 additions and 4 deletions
|
@ -12,7 +12,7 @@
|
|||
extern crate getopts;
|
||||
extern crate libc;
|
||||
|
||||
use std::io::fs::{mod, PathExtensions};
|
||||
use std::io::fs::{self, PathExtensions};
|
||||
use std::io::FilePermission;
|
||||
use std::num::from_str_radix;
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@ use std::cmp;
|
|||
use std::io;
|
||||
use std::io::IoResult;
|
||||
use std::iter::{range_inclusive, RangeInclusive};
|
||||
use std::rand::{mod, Rng};
|
||||
use std::rand::{self, Rng};
|
||||
use std::uint;
|
||||
|
||||
#[path = "../common/util.rs"]
|
||||
|
|
|
@ -14,7 +14,7 @@ extern crate libc;
|
|||
|
||||
use std::f64;
|
||||
use std::io::{print, timer};
|
||||
use std::time::duration::{mod, Duration};
|
||||
use std::time::duration::{self, Duration};
|
||||
|
||||
#[path = "../common/util.rs"]
|
||||
#[macro_use]
|
||||
|
|
|
@ -15,7 +15,7 @@ extern crate getopts;
|
|||
extern crate libc;
|
||||
|
||||
use std::io;
|
||||
use std::io::fs::{mod, PathExtensions};
|
||||
use std::io::fs::{self, PathExtensions};
|
||||
use std::io::print;
|
||||
|
||||
#[path = "../common/util.rs"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue