Fix link; remove duplicate link
This commit is contained in:
parent
b6e5e27f3a
commit
a5f0310ba4
|
|
@ -60,13 +60,12 @@ You might also find the following sites useful:
|
||||||
|
|
||||||
- This guide contains information about how various parts of the
|
- This guide contains information about how various parts of the
|
||||||
compiler work and how to contribute to the compiler.
|
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
|
- [Forge] -- contains documentation about Rust infrastructure, team procedures, and more
|
||||||
- [compiler-team] -- the home-base for the Rust compiler team, with description
|
- [compiler-team] -- the home-base for the Rust compiler team, with description
|
||||||
of the team procedures, active working groups, and the team calendar.
|
of the team procedures, active working groups, and the team calendar.
|
||||||
- [std-dev-guide] -- a similar guide for developing the standard library.
|
- [std-dev-guide] -- a similar guide for developing the standard library.
|
||||||
- [The t-compiler zulip][z]
|
- [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.
|
- [The Forge](https://forge.rust-lang.org/) has more documentation about various procedures.
|
||||||
- `#contribute` and `#wg-rustup` on [Discord](https://discord.gg/rust-lang).
|
- `#contribute` and `#wg-rustup` on [Discord](https://discord.gg/rust-lang).
|
||||||
- The [Rust Internals forum][rif], a place to ask questions and
|
- 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
|
[Miri]: https://github.com/rust-lang/miri
|
||||||
[@bors]: https://github.com/bors
|
[@bors]: https://github.com/bors
|
||||||
[GitHub repository]: https://github.com/rust-lang/rustc-dev-guide/
|
[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/
|
[Forge]: https://forge.rust-lang.org/
|
||||||
[compiler-team]: https://github.com/rust-lang/compiler-team/
|
[compiler-team]: https://github.com/rust-lang/compiler-team/
|
||||||
[std-dev-guide]: https://std-dev-guide.rust-lang.org/
|
[std-dev-guide]: https://std-dev-guide.rust-lang.org/
|
||||||
|
|
|
||||||
|
|
@ -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
|
[compiler test suite][rctd], and also performs other tests such as checking that
|
||||||
your pull request is in compliance with Rust's style guidelines.
|
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
|
Running continuous integration tests allows PR authors to catch mistakes early
|
||||||
without going through a first review cycle, and also helps reviewers stay aware
|
without going through a first review cycle, and also helps reviewers stay aware
|
||||||
of the status of a particular pull request.
|
of the status of a particular pull request.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue