about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorjyn <jyn.nelson@redjack.com>2023-04-08 12:21:07 -0400
committerTshepang Mbambo <tshepang@gmail.com>2023-04-09 22:38:15 +0200
commitbed44e0e2c63d0a7f8b979a2bf398fb4faa57717 (patch)
treea952fa709580fafb85fe02869599798080341f57 /src
parent09b1d00c595927c1c3b0d101da57c6b6c5b3f1f8 (diff)
downloadrust-bed44e0e2c63d0a7f8b979a2bf398fb4faa57717.tar.gz
rust-bed44e0e2c63d0a7f8b979a2bf398fb4faa57717.zip
Fix link; remove duplicate link
Diffstat (limited to 'src')
-rw-r--r--src/doc/rustc-dev-guide/src/about-this-guide.md5
-rw-r--r--src/doc/rustc-dev-guide/src/contributing.md2
2 files changed, 4 insertions, 3 deletions
diff --git a/src/doc/rustc-dev-guide/src/about-this-guide.md b/src/doc/rustc-dev-guide/src/about-this-guide.md
index 8fc2cd6d704..944ebf5a813 100644
--- a/src/doc/rustc-dev-guide/src/about-this-guide.md
+++ b/src/doc/rustc-dev-guide/src/about-this-guide.md
@@ -60,13 +60,12 @@ You might also find the following sites useful:
 
 - This guide contains information about how various parts of the
   compiler work and how to contribute to the compiler.
-- [rustc API docs] -- rustdoc documentation for the compiler
+- [rustc API docs] -- rustdoc documentation for the compiler, devtools, and internal tools
 - [Forge] -- contains documentation about Rust infrastructure, team procedures, and more
 - [compiler-team] -- the home-base for the Rust compiler team, with description
   of the team procedures, active working groups, and the team calendar.
 - [std-dev-guide] -- a similar guide for developing the standard library.
 - [The t-compiler zulip][z]
-- [The compiler's documentation (rustdocs)](https://doc.rust-lang.org/nightly/nightly-rustc/)
 - [The Forge](https://forge.rust-lang.org/) has more documentation about various procedures.
 - `#contribute` and `#wg-rustup` on [Discord](https://discord.gg/rust-lang).
 - The [Rust Internals forum][rif], a place to ask questions and
@@ -102,7 +101,7 @@ You might also find the following sites useful:
 [Miri]: https://github.com/rust-lang/miri
 [@bors]: https://github.com/bors
 [GitHub repository]: https://github.com/rust-lang/rustc-dev-guide/
-[rustc API docs]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_middle/
+[rustc API docs]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_middle
 [Forge]: https://forge.rust-lang.org/
 [compiler-team]: https://github.com/rust-lang/compiler-team/
 [std-dev-guide]: https://std-dev-guide.rust-lang.org/
diff --git a/src/doc/rustc-dev-guide/src/contributing.md b/src/doc/rustc-dev-guide/src/contributing.md
index 8b95f20abdc..5d69ad30023 100644
--- a/src/doc/rustc-dev-guide/src/contributing.md
+++ b/src/doc/rustc-dev-guide/src/contributing.md
@@ -189,6 +189,8 @@ a pull request, CI builds the compiler and tests it against the
 [compiler test suite][rctd], and also performs other tests such as checking that
 your pull request is in compliance with Rust's style guidelines.
 
+[rctd]: tests/intro.md
+
 Running continuous integration tests allows PR authors to catch mistakes early
 without going through a first review cycle, and also helps reviewers stay aware
 of the status of a particular pull request.