diff options
| author | Steve Klabnik <steve@steveklabnik.com> | 2015-05-27 14:15:24 -0400 |
|---|---|---|
| committer | Steve Klabnik <steve@steveklabnik.com> | 2015-05-28 12:51:01 -0400 |
| commit | 16a47c2d916ad51660d638b85e30125ac3f3fe53 (patch) | |
| tree | cbbcaad2b3240a4079163a5dcd9e23e22232206d /src/libstd | |
| parent | a5a5fcee386119b016c4ef8908cbd449dc65b730 (diff) | |
| download | rust-16a47c2d916ad51660d638b85e30125ac3f3fe53.tar.gz rust-16a47c2d916ad51660d638b85e30125ac3f3fe53.zip | |
remove references to IoResult
This is now std::io::Result
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/rand/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/rand/mod.rs b/src/libstd/rand/mod.rs index e11a5818966..b806afc5951 100644 --- a/src/libstd/rand/mod.rs +++ b/src/libstd/rand/mod.rs @@ -95,7 +95,7 @@ impl StdRng { /// appropriate. /// /// Reading the randomness from the OS may fail, and any error is - /// propagated via the `IoResult` return value. + /// propagated via the `io::Result` return value. pub fn new() -> io::Result<StdRng> { OsRng::new().map(|mut r| StdRng { rng: r.gen() }) } |
