Skip to content

Commit

Permalink
Updated references to extra in libcollections docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Tohie committed Mar 30, 2014
1 parent d79fbba commit edc7ad1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/libcollections/deque.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion src/libcollections/dlist.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down
2 changes: 1 addition & 1 deletion src/libcollections/ringbuf.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

5 comments on commit edc7ad1

@bors
Copy link
Contributor

@bors bors commented on edc7ad1 Mar 30, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bors
Copy link
Contributor

@bors bors commented on edc7ad1 Mar 30, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging Tohie/rust/master = edc7ad1 into auto

@bors
Copy link
Contributor

@bors bors commented on edc7ad1 Mar 30, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tohie/rust/master = edc7ad1 merged ok, testing candidate = ec7d0c7

@bors
Copy link
Contributor

@bors bors commented on edc7ad1 Mar 30, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bors
Copy link
Contributor

@bors bors commented on edc7ad1 Mar 30, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fast-forwarding master to auto = ec7d0c7

Please sign in to comment.