summary refs log tree commit diff
path: root/src/libstd/num/strconv.rs
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/num/strconv.rs
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/num/strconv.rs')
-rw-r--r--src/libstd/num/strconv.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/num/strconv.rs b/src/libstd/num/strconv.rs
index 48962ca59d8..5028987f44f 100644
--- a/src/libstd/num/strconv.rs
+++ b/src/libstd/num/strconv.rs
@@ -12,7 +12,7 @@
 
 use char;
 use clone::Clone;
-use container::Container;
+use collections::Collection;
 use num::{NumCast, Zero, One, cast, Int};
 use num::{Float, FPNaN, FPInfinite, ToPrimitive};
 use num;