We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 738f072 commit 2ee1a83Copy full SHA for 2ee1a83
src/vec.rs
@@ -68,7 +68,7 @@ pub struct VecInner<B: ?Sized + VecDrop> {
68
/// ```
69
pub type Vec<T, const N: usize> = VecInner<[MaybeUninit<T>; N]>;
70
71
-/// A Vec with dynamic capacity
+/// A [`Vec`](Vec) with dynamic capacity
72
///
73
/// [`Vec`](Vec) coerces to `VecView`. `VecView` is `!Sized`, meaning that it can only ever be used through pointer
74
0 commit comments