Skip to content

Commit 0037f4e

Browse files
committed
Rename rustc-guide to rustc-dev-guide
1 parent 1e17969 commit 0037f4e

File tree

49 files changed

+76
-76
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+76
-76
lines changed

.github/ISSUE_TEMPLATE/tracking_issue.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ for larger features an implementation could be broken up into multiple PRs.
3636

3737
- [ ] Implement the RFC (cc @rust-lang/XXX -- can anyone write up mentoring
3838
instructions?)
39-
- [ ] Adjust documentation ([see instructions on rustc-guide][doc-guide])
40-
- [ ] Stabilization PR ([see instructions on rustc-guide][stabilization-guide])
39+
- [ ] Adjust documentation ([see instructions on rustc-dev-guide][doc-guide])
40+
- [ ] Stabilization PR ([see instructions on rustc-dev-guide][stabilization-guide])
4141

42-
[stabilization-guide]: https://rust-lang.github.io/rustc-guide/stabilization_guide.html#stabilization-pr
43-
[doc-guide]: https://rust-lang.github.io/rustc-guide/stabilization_guide.html#documentation-prs
42+
[stabilization-guide]: https://rust-lang.github.io/rustc-dev-guide/stabilization_guide.html#stabilization-pr
43+
[doc-guide]: https://rust-lang.github.io/rustc-dev-guide/stabilization_guide.html#documentation-prs
4444

4545
### Unresolved Questions
4646
<!--

CONTRIBUTING.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ hop on the [Rust Discord server][rust-discord] or [Rust Zulip server][rust-zulip
1919

2020
As a reminder, all contributors are expected to follow our [Code of Conduct][coc].
2121

22-
The [rustc-guide] is your friend! It describes how the compiler works and how
22+
The [rustc-dev-guide] is your friend! It describes how the compiler works and how
2323
to contribute to it in more detail than this document.
2424

2525
If this is your first time contributing, the [walkthrough] chapter of the guide
@@ -29,8 +29,8 @@ can give you a good example of how a typical contribution would go.
2929
[rust-discord]: http://discord.gg/rust-lang
3030
[rust-zulip]: https://rust-lang.zulipchat.com
3131
[coc]: https://www.rust-lang.org/conduct.html
32-
[rustc-guide]: https://rust-lang.github.io/rustc-guide/
33-
[walkthrough]: https://rust-lang.github.io/rustc-guide/walkthrough.html
32+
[rustc-dev-guide]: https://rust-lang.github.io/rustc-dev-guide/
33+
[walkthrough]: https://rust-lang.github.io/rustc-dev-guide/walkthrough.html
3434

3535
## Feature Requests
3636
[feature-requests]: #feature-requests
@@ -103,12 +103,12 @@ $ RUST_BACKTRACE=1 rustc ...
103103
## The Build System
104104

105105
For info on how to configure and build the compiler, please see [this
106-
chapter][rustcguidebuild] of the rustc-guide. This chapter contains info for
106+
chapter][rustcguidebuild] of the rustc-dev-guide. This chapter contains info for
107107
contributions to the compiler and the standard library. It also lists some
108108
really useful commands to the build system (`./x.py`), which could save you a
109109
lot of time.
110110

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

113113
## Pull Requests
114114
[pull-requests]: #pull-requests
@@ -336,9 +336,9 @@ to check small fixes. For example, `rustdoc src/doc/reference.md` will render
336336
reference to `doc/reference.html`. The CSS might be messed up, but you can
337337
verify that the HTML is right.
338338

339-
Additionally, contributions to the [rustc-guide] are always welcome. Contributions
339+
Additionally, contributions to the [rustc-dev-guide] are always welcome. Contributions
340340
can be made directly at [the
341-
rust-lang/rustc-guide](https://github.com/rust-lang/rustc-guide) repo. The issue
341+
rust-lang/rustc-dev-guide](https://github.com/rust-lang/rustc-dev-guide) repo. The issue
342342
tracker in that repo is also a great way to find things that need doing. There
343343
are issues for beginners and advanced compiler devs alike!
344344

@@ -448,13 +448,13 @@ 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-guide/about-this-guide.html
451+
[rustc 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
455455
[rr]: https://doc.rust-lang.org/book/README.html
456456
[rustforge]: https://forge.rust-lang.org/
457457
[tlgba]: http://tomlee.co/2014/04/a-more-detailed-tour-of-the-rust-compiler/
458458
[ro]: http://www.rustaceans.org/
459-
[rctd]: https://rust-lang.github.io/rustc-guide/tests/intro.html
459+
[rctd]: https://rust-lang.github.io/rustc-dev-guide/tests/intro.html
460460
[cheatsheet]: https://buildbot2.rust-lang.org/homu/

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ Read ["Installation"] from [The Book].
1515
## Installing from Source
1616

1717
_Note: If you wish to contribute to the compiler, you should read [this
18-
chapter][rustcguidebuild] of the rustc-guide instead of this section._
18+
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`
2222
or reading the [rustc guide][rustcguidebuild].
2323

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

2626
### Building on *nix
2727
1. Make sure you have installed the dependencies:
@@ -255,7 +255,7 @@ various parts of the compiler work.
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-guide/about-this-guide.html
258+
[rustc 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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ This directory contains the source code of the rust project, including:
55

66
For more information on how various parts of the compiler work, see the [rustc guide].
77

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

src/doc/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ Rust. It's also sometimes called "the 'nomicon."
120120

121121
## The `rustc` Contribution Guide
122122

123-
[The `rustc` Guide](https://rust-lang.github.io/rustc-guide/) documents how
123+
[The `rustc` Guide](https://rust-lang.github.io/rustc-dev-guide/) documents how
124124
the compiler works and how to contribute to it. This is useful if you want to build
125125
or modify the Rust compiler from source (e.g. to target something non-standard).
126126

src/doc/rustc/src/contributing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ more, you'll want to check that out.
88
If you would like to contribute to _this_ book, you can find its source in the
99
rustc source at [src/doc/rustc][rustc_book].
1010

11-
[rustc_guide]: https://rust-lang.github.io/rustc-guide/
11+
[rustc_guide]: https://rust-lang.github.io/rustc-dev-guide/
1212
[rustc_book]: https://github.com/rust-lang/rust/tree/master/src/doc/rustc

src/librustc/README.md

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

3-
[rustc guide]: https://rust-lang.github.io/rustc-guide/
3+
[rustc 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-guide/query.html
4+
[rustc guide]: https://rust-lang.github.io/rustc-dev-guide/query.html

src/librustc/dep_graph/graph.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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-guide/incremental-compilation.html
197+
/// [rustc 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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! HIR datatypes. See the [rustc guide] for more info.
22
//!
3-
//! [rustc guide]: https://rust-lang.github.io/rustc-guide/hir.html
3+
//! [rustc guide]: https://rust-lang.github.io/rustc-dev-guide/hir.html
44
55
pub mod exports;
66
pub mod map;

0 commit comments

Comments
 (0)