Update links of rustc guide

This commit is contained in:
Yuki Okushi 2020-04-12 05:02:35 +09:00
parent e82734e56b
commit 6b2830427b
No known key found for this signature in database
GPG Key ID: B0986C85C0E2DAA1
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
//! Trait Resolution. See the [rustc guide] for more information on how this works.
//! Trait Resolution. See the [rustc-dev-guide] for more information on how this works.
//!
//! [rustc guide]: https://rust-lang.github.io/rustc-guide/traits/resolution.html
//! [rustc-dev-guide]: https://rustc-dev-guide.rust-lang.org/traits/resolution.html
mod engine;
pub mod error_reporting;

View File

@ -2,9 +2,9 @@
//!
//! - **Traits.** Trait resolution is implemented in the `traits` module.
//!
//! For more information about how rustc works, see the [rustc guide].
//! For more information about how rustc works, see the [rustc-dev-guide].
//!
//! [rustc guide]: https://rust-lang.github.io/rustc-guide/
//! [rustc-dev-guide]: https://rustc-dev-guide.rust-lang.org/
//!
//! # Note
//!