about summary refs log tree commit diff
diff options
context:
space:
mode:
authorYuki Okushi <huyuumi.dev@gmail.com>2020-04-12 05:02:35 +0900
committerYuki Okushi <huyuumi.dev@gmail.com>2020-04-12 05:02:35 +0900
commit6b2830427b6bb2bf436439cb06ef60d4392d768f (patch)
treee3f2b60c3f61c9312fb0faeb1851cc4eafc88cca
parente82734e56b2a50d38e0937d08f559d15dbe8e46b (diff)
downloadrust-6b2830427b6bb2bf436439cb06ef60d4392d768f.tar.gz
rust-6b2830427b6bb2bf436439cb06ef60d4392d768f.zip
Update links of `rustc guide`
-rw-r--r--src/librustc_infer/traits/mod.rs4
-rw-r--r--src/librustc_trait_selection/lib.rs4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/librustc_infer/traits/mod.rs b/src/librustc_infer/traits/mod.rs
index 758a0b39d43..2210c663d14 100644
--- a/src/librustc_infer/traits/mod.rs
+++ b/src/librustc_infer/traits/mod.rs
@@ -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;
diff --git a/src/librustc_trait_selection/lib.rs b/src/librustc_trait_selection/lib.rs
index 21315cc89ca..ea886cd1f9e 100644
--- a/src/librustc_trait_selection/lib.rs
+++ b/src/librustc_trait_selection/lib.rs
@@ -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
 //!