File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 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
1313use std:: container:: Mutable ;
1414
Original file line number Diff line number Diff line change 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`.
Original file line number Diff line number Diff line change 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
1616use std:: cmp;
1717use std:: slice;
You can’t perform that action at this time.
0 commit comments