about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-03-30 11:26:44 -0700
committerbors <bors@rust-lang.org>2014-03-30 11:26:44 -0700
commitec7d0c7cc59bd45688c420bef7b3095dadc385d8 (patch)
tree16c0b4cb92aa918bf8ebe86e74d0829daf15c0da
parentd79fbba0db84b2d27440f8feba715dffd3aeaa01 (diff)
parentedc7ad162cc8228d3d0104c1d0be92f9c43eabb2 (diff)
downloadrust-ec7d0c7cc59bd45688c420bef7b3095dadc385d8.tar.gz
rust-ec7d0c7cc59bd45688c420bef7b3095dadc385d8.zip
auto merge of #13208 : Tohie/rust/master, r=alexcrichton
-rw-r--r--src/libcollections/deque.rs2
-rw-r--r--src/libcollections/dlist.rs2
-rw-r--r--src/libcollections/ringbuf.rs2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/libcollections/deque.rs b/src/libcollections/deque.rs
index 05df04d293f..9c1427d0225 100644
--- a/src/libcollections/deque.rs
+++ b/src/libcollections/deque.rs
@@ -8,7 +8,7 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-//! Container traits for extra
+//! Container traits for collections
 
 use std::container::Mutable;
 
diff --git a/src/libcollections/dlist.rs b/src/libcollections/dlist.rs
index 914244cc431..a8126125cb1 100644
--- a/src/libcollections/dlist.rs
+++ b/src/libcollections/dlist.rs
@@ -13,7 +13,7 @@
 //! The DList allows pushing and popping elements at either end.
 //!
 //! DList implements the trait Deque. It should be imported with `use
-//! extra::container::Deque`.
+//! collections::deque::Deque`.
 
 
 // DList is constructed like a singly-linked list over the field `next`.
diff --git a/src/libcollections/ringbuf.rs b/src/libcollections/ringbuf.rs
index 05a4a2ba5fb..3abeeb21695 100644
--- a/src/libcollections/ringbuf.rs
+++ b/src/libcollections/ringbuf.rs
@@ -11,7 +11,7 @@
 //! A double-ended queue implemented as a circular buffer
 //!
 //! RingBuf implements the trait Deque. It should be imported with `use
-//! extra::container::Deque`.
+//! collections::deque::Deque`.
 
 use std::cmp;
 use std::slice;