@@ -1843,9 +1843,9 @@ that page, but the best part is the search bar. Right up at the top, there's
18431843a box that you can enter in a search term. The search is pretty primitive
18441844right now, but is getting better all the time. If you type 'random' in that
18451845box, the page will update to [ this
1846- one] ( http://doc.rust-lang.org/ std/index.html?search=random) . The very first
1846+ one] ( std/index.html?search=random ) . The very first
18471847result is a link to
1848- [ std::rand::random] ( http://doc.rust-lang.org/ std/rand/fn.random.html) . If we
1848+ [ std::rand::random] ( std/rand/fn.random.html ) . If we
18491849click on that result, we'll be taken to its documentation page.
18501850
18511851This page shows us a few things: the type signature of the function, some
@@ -3723,7 +3723,7 @@ If you use `Rc<T>` or `Arc<T>`, you have to be careful about introducing
37233723cycles. If you have two ` Rc<T> ` s that point to each other, the reference counts
37243724will never drop to zero, and you'll have a memory leak. To learn more, check
37253725out [ the section on ` Rc<T> ` and ` Arc<T> ` in the pointers
3726- guide] ( http://doc.rust-lang.org/ guide-pointers.html#rc-and-arc) .
3726+ guide] ( guide-pointers.html#rc-and-arc ) .
37273727
37283728# Patterns
37293729
@@ -5336,6 +5336,6 @@ you will have a firm grasp of basic Rust development. There's a whole lot more
53365336out there, we've just covered the surface. There's tons of topics that you can
53375337dig deeper into, and we've built specialized guides for many of them. To learn
53385338more, dig into the [ full documentation
5339- index] ( http://doc.rust-lang.org/ index.html) .
5339+ index] ( index.html ) .
53405340
53415341Happy hacking!
0 commit comments