diff options
| author | Brian Anderson <banderson@mozilla.com> | 2014-05-19 11:32:09 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-06-08 21:29:57 -0700 |
| commit | 50942c7695783875bd2161596036a52755ffb09c (patch) | |
| tree | 0d8ddd4e8d3a58c33de17eeb966684f6796d4547 /src/libstd/comm | |
| parent | 443a1cdf949fad31c5a851be02017d09ce09f318 (diff) | |
| download | rust-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/comm')
| -rw-r--r-- | src/libstd/comm/sync.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/comm/sync.rs b/src/libstd/comm/sync.rs index 7fe505573b7..84ef6d0aa8f 100644 --- a/src/libstd/comm/sync.rs +++ b/src/libstd/comm/sync.rs @@ -33,7 +33,7 @@ /// of a synchronous channel. There are a few branches for the unbuffered case, /// but they're mostly just relevant to blocking senders. -use container::Container; +use collections::Collection; use iter::Iterator; use kinds::Send; use mem; |
