Skip to content

Commit 006ab33

Browse files
Add link
1 parent e1c7ca9 commit 006ab33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vec.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ pub struct VecInner<B: ?Sized + VecDrop> {
7575
/// ```
7676
pub type Vec<T, const N: usize> = VecInner<[MaybeUninit<T>; N]>;
7777

78-
/// A Vec with dynamic capacity
78+
/// A [`Vec`](Vec) with dynamic capacity
7979
///
8080
/// [`Vec`](Vec) coerces to `VecView`. `VecView` is `!Sized`, meaning that it can only ever be used through pointer
8181
///

0 commit comments

Comments
 (0)