Updated references to extra in libcollections docs
This commit is contained in:
parent
d79fbba0db
commit
edc7ad162c
3 changed files with 3 additions and 3 deletions
|
@ -8,7 +8,7 @@
|
||||||
// option. This file may not be copied, modified, or distributed
|
// option. This file may not be copied, modified, or distributed
|
||||||
// except according to those terms.
|
// except according to those terms.
|
||||||
|
|
||||||
//! Container traits for extra
|
//! Container traits for collections
|
||||||
|
|
||||||
use std::container::Mutable;
|
use std::container::Mutable;
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
//! The DList allows pushing and popping elements at either end.
|
//! The DList allows pushing and popping elements at either end.
|
||||||
//!
|
//!
|
||||||
//! DList implements the trait Deque. It should be imported with `use
|
//! 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`.
|
// DList is constructed like a singly-linked list over the field `next`.
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
//! A double-ended queue implemented as a circular buffer
|
//! A double-ended queue implemented as a circular buffer
|
||||||
//!
|
//!
|
||||||
//! RingBuf implements the trait Deque. It should be imported with `use
|
//! RingBuf implements the trait Deque. It should be imported with `use
|
||||||
//! extra::container::Deque`.
|
//! collections::deque::Deque`.
|
||||||
|
|
||||||
use std::cmp;
|
use std::cmp;
|
||||||
use std::slice;
|
use std::slice;
|
||||||
|
|
Loading…
Add table
Reference in a new issue