Skip to content

Commit 701d274

Browse files
Add link
1 parent 2155079 commit 701d274

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
@@ -68,7 +68,7 @@ pub struct VecInner<B: ?Sized + VecDrop> {
6868
/// ```
6969
pub type Vec<T, const N: usize> = VecInner<[MaybeUninit<T>; N]>;
7070

71-
/// A Vec with dynamic capacity
71+
/// A [`Vec`](Vec) with dynamic capacity
7272
///
7373
/// [`Vec`](Vec) coerces to `VecView`. `VecView` is `!Sized`, meaning that it can only ever be used through pointer
7474
///

0 commit comments

Comments
 (0)