Skip to content

Commit 9d4fdba

Browse files
committed
Rename rustc guide to rustc dev guide
1 parent 0037f4e commit 9d4fdba

File tree

40 files changed

+83
-83
lines changed

40 files changed

+83
-83
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ For people new to Rust, and just starting to contribute, or even for
434434
more seasoned developers, some useful places to look for information
435435
are:
436436

437-
* The [rustc guide] contains information about how various parts of the compiler work and how to contribute to the compiler
437+
* The [rustc dev guide] contains information about how various parts of the compiler work and how to contribute to the compiler
438438
* [Rust Forge][rustforge] contains additional documentation, including write-ups of how to achieve common tasks
439439
* The [Rust Internals forum][rif], a place to ask questions and
440440
discuss Rust's internals
@@ -448,7 +448,7 @@ are:
448448
* **Google!** ([search only in Rust Documentation][gsearchdocs] to find types, traits, etc. quickly)
449449
* Don't be afraid to ask! The Rust community is friendly and helpful.
450450

451-
[rustc guide]: https://rust-lang.github.io/rustc-dev-guide/about-this-guide.html
451+
[rustc dev guide]: https://rust-lang.github.io/rustc-dev-guide/about-this-guide.html
452452
[gdfrustc]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc/
453453
[gsearchdocs]: https://www.google.com/search?q=site:doc.rust-lang.org+your+query+here
454454
[rif]: http://internals.rust-lang.org

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ chapter][rustcguidebuild] of the rustc-dev-guide instead of this section._
1919

2020
The Rust build system has a Python script called `x.py` to bootstrap building
2121
the compiler. More information about it may be found by running `./x.py --help`
22-
or reading the [rustc guide][rustcguidebuild].
22+
or reading the [rustc dev guide][rustcguidebuild].
2323

2424
[rustcguidebuild]: https://rust-lang.github.io/rustc-dev-guide/building/how-to-build-and-run.html
2525

@@ -249,13 +249,13 @@ Most real-time collaboration happens in a variety of channels on the
249249
community, documentation, and all major contribution areas in the Rust ecosystem.
250250
A good place to ask for help would be the #help channel.
251251
252-
The [rustc guide] might be a good place to start if you want to find out how
252+
The [rustc dev guide] might be a good place to start if you want to find out how
253253
various parts of the compiler work.
254254
255255
Also, you may find the [rustdocs for the compiler itself][rustdocs] useful.
256256
257257
[rust-discord]: https://discord.gg/rust-lang
258-
[rustc guide]: https://rust-lang.github.io/rustc-dev-guide/about-this-guide.html
258+
[rustc dev guide]: https://rust-lang.github.io/rustc-dev-guide/about-this-guide.html
259259
[rustdocs]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc/
260260
261261
## License

src/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ This directory contains the source code of the rust project, including:
33
- `libstd`
44
- Various submodules for tools, like rustdoc, rls, etc.
55

6-
For more information on how various parts of the compiler work, see the [rustc guide].
6+
For more information on how various parts of the compiler work, see the [rustc dev guide].
77

8-
[rustc guide]: https://rust-lang.github.io/rustc-dev-guide/about-this-guide.html
8+
[rustc dev guide]: https://rust-lang.github.io/rustc-dev-guide/about-this-guide.html

src/librustc/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
For more information about how rustc works, see the [rustc guide].
1+
For more information about how rustc works, see the [rustc dev guide].
22

3-
[rustc guide]: https://rust-lang.github.io/rustc-dev-guide/
3+
[rustc dev guide]: https://rust-lang.github.io/rustc-dev-guide/

src/librustc/dep_graph/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
To learn more about how dependency tracking works in rustc, see the [rustc
22
guide].
33

4-
[rustc guide]: https://rust-lang.github.io/rustc-dev-guide/query.html
4+
[rustc dev guide]: https://rust-lang.github.io/rustc-dev-guide/query.html

src/librustc/dep_graph/graph.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ impl DepGraph {
174174
/// what state they have access to. In particular, we want to
175175
/// prevent implicit 'leaks' of tracked state into the task (which
176176
/// could then be read without generating correct edges in the
177-
/// dep-graph -- see the [rustc guide] for more details on
177+
/// dep-graph -- see the [rustc dev guide] for more details on
178178
/// the dep-graph). To this end, the task function gets exactly two
179179
/// pieces of state: the context `cx` and an argument `arg`. Both
180180
/// of these bits of state must be of some type that implements
@@ -194,7 +194,7 @@ impl DepGraph {
194194
/// - If you need 3+ arguments, use a tuple for the
195195
/// `arg` parameter.
196196
///
197-
/// [rustc guide]: https://rust-lang.github.io/rustc-dev-guide/incremental-compilation.html
197+
/// [rustc dev guide]: https://rust-lang.github.io/rustc-dev-guide/incremental-compilation.html
198198
pub fn with_task<'a, C, A, R>(
199199
&self,
200200
key: DepNode,

src/librustc/hir/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
//! HIR datatypes. See the [rustc guide] for more info.
1+
//! HIR datatypes. See the [rustc dev guide] for more info.
22
//!
3-
//! [rustc guide]: https://rust-lang.github.io/rustc-dev-guide/hir.html
3+
//! [rustc dev guide]: https://rust-lang.github.io/rustc-dev-guide/hir.html
44
55
pub mod exports;
66
pub mod map;

src/librustc/infer/canonical.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
//! `instantiate_query_result` method.
1818
//!
1919
//! For a more detailed look at what is happening here, check
20-
//! out the [chapter in the rustc guide][c].
20+
//! out the [chapter in the rustc dev guide][c].
2121
//!
2222
//! [c]: https://rust-lang.github.io/rustc-dev-guide/traits/canonicalization.html
2323

src/librustc/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
//! (or `tcx`), which is the central context during most of
1515
//! compilation, containing the interners and other things.
1616
//!
17-
//! For more information about how rustc works, see the [rustc guide].
17+
//! For more information about how rustc works, see the [rustc dev guide].
1818
//!
19-
//! [rustc guide]: https://rust-lang.github.io/rustc-dev-guide/
19+
//! [rustc dev guide]: https://rust-lang.github.io/rustc-dev-guide/
2020
//!
2121
//! # Note
2222
//!

src/librustc/middle/region.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
//! the parent links in the region hierarchy.
33
//!
44
//! For more information about how MIR-based region-checking works,
5-
//! see the [rustc guide].
5+
//! see the [rustc dev guide].
66
//!
7-
//! [rustc guide]: https://rust-lang.github.io/rustc-dev-guide/mir/borrowck.html
7+
//! [rustc dev guide]: https://rust-lang.github.io/rustc-dev-guide/mir/borrowck.html
88
99
use crate::ich::{NodeIdHashingMode, StableHashingContext};
1010
use crate::ty::{self, DefIdTree, TyCtxt};

0 commit comments

Comments
 (0)