diff --git a/library/alloc/src/vec.rs b/library/alloc/src/vec.rs index 011ea32d0cfc2..eba7ffae22c4c 100644 --- a/library/alloc/src/vec.rs +++ b/library/alloc/src/vec.rs @@ -120,6 +120,9 @@ use crate::raw_vec::RawVec; /// assert_eq!(vec, [0, 0, 0, 0, 0]); /// ``` /// +/// For more information, see +/// [Capacity and Reallocation](#capacity-and-reallocation). +/// /// Use a `Vec` as an efficient stack: /// /// ```