Link to the index of nomicon most of the time, not vec

This commit is contained in:
Carol (Nichols || Goulding)
2017-04-11 11:05:43 -04:00
parent 3563b7d8c4
commit 9430a3d28a
2 changed files with 2 additions and 2 deletions

View File

@@ -395,7 +395,7 @@ using `Weak<T>`.
If this chapter has piqued your interest and you now want to implement your own
smart pointers, check out [The Nomicon] for even more useful information.
[The Nomicon]: https://doc.rust-lang.org/stable/nomicon/vec.html
[The Nomicon]: https://doc.rust-lang.org/stable/nomicon/
Next, let's talk about concurrency in Rust. We'll even learn about a few new
smart pointers that can help us with it.

View File

@@ -61,7 +61,7 @@ new concurrent types that aren't made up of `Send` and `Sync` parts requires
careful thought to make sure the safety guarantees are upheld. [The Nomicon]
has more information about these guarantees and how to uphold them.
[The Nomicon]: https://doc.rust-lang.org/stable/nomicon/vec.html
[The Nomicon]: https://doc.rust-lang.org/stable/nomicon/
## Summary