]> git.lizzy.rs Git - rust.git/blobdiff - src/libcollections/dlist.rs
rollup merge of #19622: steveklabnik/fix_ringbuf_doc
[rust.git] / src / libcollections / dlist.rs
index 4309e96bec4827bf4fea61d15d6f171f78fa7ac1..712c0bcabd58ce15b6181beecd9bd57569d6af43 100644 (file)
@@ -11,9 +11,6 @@
 //! A doubly-linked list with owned nodes.
 //!
 //! The `DList` allows pushing and popping elements at either end.
-//!
-//! `DList` implements the trait `Deque`. It should be imported with
-//! `use collections::Deque`.
 
 // DList is constructed like a singly-linked list over the field `next`.
 // including the last link being None; each Node owns its `next` field.