Skip to content

Commit 5a0502c

Browse files
committed
break doc links
1 parent 0a9d792 commit 5a0502c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/liballoc/raw_vec.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -381,9 +381,11 @@ impl<T, A: Alloc> RawVec<T, A> {
381381
/// - 2 reallocations for a growth factor of 1.3x
382382
///
383383
/// Which one is better [is application
384-
/// dependent](https://stackoverflow.com/questions/1100311/what-is-the-ideal-growth-rate-for-a-dynamically-allocated-array),
384+
/// dependent](https://stackoverflow.com/questions/1100311/
385+
/// what-is-the-ideal-growth-rate-for-a-dynamically-allocated-array),
385386
/// also some claim that [the golden ration (1.618) is
386-
/// optimal](https://crntaylor.wordpress.com/2011/07/15/optimal-memory-reallocation-and-the-golden-ratio/).
387+
/// optimal](https://crntaylor.wordpress.com/2011/07/15/
388+
/// optimal-memory-reallocation-and-the-golden-ratio/).
387389
/// The trade-off is having to wait for many reallocations to be able to
388390
/// reuse old memory.
389391
///

0 commit comments

Comments
 (0)