We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 113c3cc commit 2fe9669Copy full SHA for 2fe9669
src/vec.rs
@@ -75,7 +75,7 @@ pub struct VecInner<B: ?Sized + VecDrop> {
75
/// ```
76
pub type Vec<T, const N: usize> = VecInner<[MaybeUninit<T>; N]>;
77
78
-/// A Vec with dynamic capacity
+/// A [`Vec`](Vec) with dynamic capacity
79
///
80
/// [`Vec`](Vec) coerces to `VecView`. `VecView` is `!Sized`, meaning that it can only ever be used through pointer
81
0 commit comments