File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2709,7 +2709,7 @@ impl<T: fmt::Debug> fmt::Debug for VecDeque<T> {
2709
2709
2710
2710
#[ stable( feature = "vecdeque_vec_conversions" , since = "1.10.0" ) ]
2711
2711
impl < T > From < Vec < T > > for VecDeque < T > {
2712
- /// Turn a `Vec<T>` into a `VecDeque<T>`.
2712
+ /// Turn a [ `Vec<T>`] into a [ `VecDeque<T>`] .
2713
2713
///
2714
2714
/// This avoids reallocating where possible, but the conditions for that are
2715
2715
/// strict, and subject to change, and so shouldn't be relied upon unless the
@@ -2762,7 +2762,7 @@ impl<T> From<Vec<T>> for VecDeque<T> {
2762
2762
2763
2763
#[ stable( feature = "vecdeque_vec_conversions" , since = "1.10.0" ) ]
2764
2764
impl < T > From < VecDeque < T > > for Vec < T > {
2765
- /// Turn a `VecDeque<T>` into a `Vec<T>`.
2765
+ /// Turn a [ `VecDeque<T>`] into a [ `Vec<T>`] .
2766
2766
///
2767
2767
/// This never needs to re-allocate, but does need to do O(n) data movement if
2768
2768
/// the circular buffer doesn't happen to be at the beginning of the allocation.
You can’t perform that action at this time.
0 commit comments