Skip to content

Commit ec7d0c7

Browse files
committed
auto merge of #13208 : Tohie/rust/master, r=alexcrichton
2 parents d79fbba + edc7ad1 commit ec7d0c7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/libcollections/deque.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
//! Container traits for extra
11+
//! Container traits for collections
1212
1313
use std::container::Mutable;
1414

src/libcollections/dlist.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
//! The DList allows pushing and popping elements at either end.
1414
//!
1515
//! DList implements the trait Deque. It should be imported with `use
16-
//! extra::container::Deque`.
16+
//! collections::deque::Deque`.
1717
1818

1919
// DList is constructed like a singly-linked list over the field `next`.

src/libcollections/ringbuf.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
//! A double-ended queue implemented as a circular buffer
1212
//!
1313
//! RingBuf implements the trait Deque. It should be imported with `use
14-
//! extra::container::Deque`.
14+
//! collections::deque::Deque`.
1515
1616
use std::cmp;
1717
use std::slice;

0 commit comments

Comments
 (0)