File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 8
8
// option. This file may not be copied, modified, or distributed
9
9
// except according to those terms.
10
10
11
- //! Container traits for extra
11
+ //! Container traits for collections
12
12
13
13
use std:: container:: Mutable ;
14
14
Original file line number Diff line number Diff line change 13
13
//! The DList allows pushing and popping elements at either end.
14
14
//!
15
15
//! DList implements the trait Deque. It should be imported with `use
16
- //! extra::container ::Deque`.
16
+ //! collections::deque ::Deque`.
17
17
18
18
19
19
// DList is constructed like a singly-linked list over the field `next`.
Original file line number Diff line number Diff line change 11
11
//! A double-ended queue implemented as a circular buffer
12
12
//!
13
13
//! RingBuf implements the trait Deque. It should be imported with `use
14
- //! extra::container ::Deque`.
14
+ //! collections::deque ::Deque`.
15
15
16
16
use std:: cmp;
17
17
use std:: slice;
You can’t perform that action at this time.
0 commit comments