We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1c47ffc + 0467c34 commit f09c219Copy full SHA for f09c219
src/deque.rs
@@ -41,9 +41,9 @@ use core::{ptr, slice};
41
42
use crate::storage::{OwnedStorage, Storage, ViewStorage};
43
44
-/// Base struct for [`Deque`] and [`Deque`], generic over the [`Storage`].
+/// Base struct for [`Deque`] and [`DequeView`], generic over the [`Storage`].
45
///
46
-/// In most cases you should use [`Deque`] or [`Deque`] directly. Only use this
+/// In most cases you should use [`Deque`] or [`DequeView`] directly. Only use this
47
/// struct if you want to write code that's generic over both.
48
pub struct DequeInner<T, S: Storage> {
49
/// Front index. Always 0..=(N-1)
0 commit comments