diff options
| author | Marvin Löbel <loebel.marvin@gmail.com> | 2013-08-11 04:21:31 +0200 |
|---|---|---|
| committer | Marvin Löbel <loebel.marvin@gmail.com> | 2013-08-14 14:48:25 +0200 |
| commit | a00becd0eb8c04dc7416a5f8a633b73c9080c65d (patch) | |
| tree | cdf2407477d66dc4a275e35491e4467a9ae9533e /src/libstd/std.rs | |
| parent | 0efbb25a26d9a793ce5aa67e030b3d0bee43f5fa (diff) | |
| download | rust-a00becd0eb8c04dc7416a5f8a633b73c9080c65d.tar.gz rust-a00becd0eb8c04dc7416a5f8a633b73c9080c65d.zip | |
Methodyfied the string ascii extionsion functions
Added into_owned() method for vectors Added DoubleEnded Iterator impl to Option Renamed nil.rs to unit.rs
Diffstat (limited to 'src/libstd/std.rs')
| -rw-r--r-- | src/libstd/std.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/std.rs b/src/libstd/std.rs index c4bd0a6d043..9370e7b0e84 100644 --- a/src/libstd/std.rs +++ b/src/libstd/std.rs @@ -110,7 +110,7 @@ pub mod prelude; #[path = "num/f32.rs"] pub mod f32; #[path = "num/f64.rs"] pub mod f64; -pub mod nil; +pub mod unit; pub mod bool; pub mod char; pub mod tuple; |
