about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorDylan DPC <dylan.dpc@gmail.com>2020-04-12 14:49:05 +0200
committerGitHub <noreply@github.com>2020-04-12 14:49:05 +0200
commitd608dfc4f54358242963b794cf946802ec9bb9f8 (patch)
tree8489f017b704dce3a700280d88ba8539c289fa00 /src
parentb3372ba1d01b0d9e26a231a8c0aa062c6f75d9f4 (diff)
parent6b2830427b6bb2bf436439cb06ef60d4392d768f (diff)
downloadrust-d608dfc4f54358242963b794cf946802ec9bb9f8.tar.gz
rust-d608dfc4f54358242963b794cf946802ec9bb9f8.zip
Rollup merge of #71041 - JohnTitor:rustc-dev-guide, r=jonas-schievink
Update links of `rustc guide`

Picks up the things we left behind in the transition, hopefully they're last ones.

r? @spastorino
Diffstat (limited to 'src')
-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 9ada88098a5..4796b431d8d 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
 //!