1
Fork 0
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:
Michael Gehring 2015-01-08 14:04:02 +01:00
parent 48f129ea49
commit f580275ef8
4 changed files with 4 additions and 4 deletions

View file

@ -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;

View file

@ -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"]

View file

@ -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]

View file

@ -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"]