about summary refs log tree commit diff
path: root/src/libstd/path
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2014-05-19 11:32:09 -0700
committerAlex Crichton <alex@alexcrichton.com>2014-06-08 21:29:57 -0700
commit50942c7695783875bd2161596036a52755ffb09c (patch)
tree0d8ddd4e8d3a58c33de17eeb966684f6796d4547 /src/libstd/path
parent443a1cdf949fad31c5a851be02017d09ce09f318 (diff)
downloadrust-50942c7695783875bd2161596036a52755ffb09c.tar.gz
rust-50942c7695783875bd2161596036a52755ffb09c.zip
core: Rename `container` mod to `collections`. Closes #12543
Also renames the `Container` trait to `Collection`.

[breaking-change]
Diffstat (limited to 'src/libstd/path')
-rw-r--r--src/libstd/path/mod.rs2
-rw-r--r--src/libstd/path/windows.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/path/mod.rs b/src/libstd/path/mod.rs
index 681b19a2d1a..a101f043212 100644
--- a/src/libstd/path/mod.rs
+++ b/src/libstd/path/mod.rs
@@ -65,7 +65,7 @@ println!("path exists: {}", path.exists());
 
 #![deny(deprecated_owned_vector)]
 
-use container::Container;
+use collections::Collection;
 use c_str::CString;
 use clone::Clone;
 use fmt;
diff --git a/src/libstd/path/windows.rs b/src/libstd/path/windows.rs
index 9bb137edb82..011dfa6eeac 100644
--- a/src/libstd/path/windows.rs
+++ b/src/libstd/path/windows.rs
@@ -14,7 +14,7 @@ use ascii::AsciiCast;
 use c_str::{CString, ToCStr};
 use clone::Clone;
 use cmp::{PartialEq, Eq};
-use container::Container;
+use collections::Collection;
 use from_str::FromStr;
 use hash;
 use io::Writer;