@@ -1843,9 +1843,9 @@ that page, but the best part is the search bar. Right up at the top, there's
1843
1843
a box that you can enter in a search term. The search is pretty primitive
1844
1844
right now, but is getting better all the time. If you type 'random' in that
1845
1845
box, 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
1847
1847
result 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
1849
1849
click on that result, we'll be taken to its documentation page.
1850
1850
1851
1851
This 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
3723
3723
cycles. If you have two ` Rc<T> ` s that point to each other, the reference counts
3724
3724
will never drop to zero, and you'll have a memory leak. To learn more, check
3725
3725
out [ 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 ) .
3727
3727
3728
3728
# Patterns
3729
3729
@@ -5336,6 +5336,6 @@ you will have a firm grasp of basic Rust development. There's a whole lot more
5336
5336
out there, we've just covered the surface. There's tons of topics that you can
5337
5337
dig deeper into, and we've built specialized guides for many of them. To learn
5338
5338
more, dig into the [ full documentation
5339
- index] ( http://doc.rust-lang.org/ index.html) .
5339
+ index] ( index.html ) .
5340
5340
5341
5341
Happy hacking!
0 commit comments