-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rename rustc guide #69747
Merged
Merged
Rename rustc guide #69747
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
0037f4e
Rename rustc-guide to rustc-dev-guide
spastorino 9d4fdba
Rename rustc guide to rustc dev guide
spastorino 1ddcea3
Rename rustc_guide to rustc_dev_guide
spastorino d00b269
Rename Rustc Guide to Rustc Dev Guide
spastorino b3b32b7
rust-lang.github.io/rustc-dev-guide -> rustc-dev-guide.rust-lang.org
spastorino File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
# Contributing to rustc | ||
|
||
We'd love to have your help improving `rustc`! To that end, we've written [a | ||
whole book][rustc_guide] on its | ||
whole book][rustc_dev_guide] on its | ||
internals, how it works, and how to get started working on it. To learn | ||
more, you'll want to check that out. | ||
|
||
If you would like to contribute to _this_ book, you can find its source in the | ||
rustc source at [src/doc/rustc][rustc_book]. | ||
|
||
[rustc_guide]: https://rust-lang.github.io/rustc-guide/ | ||
[rustc_dev_guide]: https://rustc-dev-guide.rust-lang.org/ | ||
[rustc_book]: https://github.com/rust-lang/rust/tree/master/src/doc/rustc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
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/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
To learn more about how dependency tracking works in rustc, see the [rustc | ||
guide]. | ||
|
||
[rustc guide]: https://rust-lang.github.io/rustc-guide/query.html | ||
[rustc dev guide]: https://rustc-dev-guide.rust-lang.org/query.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
For more information about how the query system works, see the [rustc guide]. | ||
For more information about how the query system works, see the [rustc dev guide]. | ||
|
||
[rustc guide]: https://rust-lang.github.io/rustc-guide/query.html | ||
[rustc dev guide]: https://rustc-dev-guide.rust-lang.org/query.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ The `rustc_ast` crate contains those things concerned purely with syntax | |
lexer, macro expander, and utilities for traversing ASTs. | ||
|
||
For more information about how these things work in rustc, see the | ||
rustc guide: | ||
rustc dev guide: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe add an active link here? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we should, but maybe let's handle that on a separate PR? |
||
|
||
- [Parsing](https://rust-lang.github.io/rustc-guide/the-parser.html) | ||
- [Macro Expansion](https://rust-lang.github.io/rustc-guide/macro-expansion.html) | ||
- [Parsing](https://rustc-dev-guide.rust-lang.org/the-parser.html) | ||
- [Macro Expansion](https://rustc-dev-guide.rust-lang.org/macro-expansion.html) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
Please read the rustc-guide chapter on [Backend Agnostic Codegen][bac]. | ||
Please read the rustc-dev-guide chapter on [Backend Agnostic Codegen][bac]. | ||
|
||
[bac]: https://rust-lang.github.io/rustc-guide/codegen/backend-agnostic.html | ||
[bac]: https://rustc-dev-guide.rust-lang.org/codegen/backend-agnostic.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
For info on how the incremental compilation works, see the [rustc guide]. | ||
For info on how the incremental compilation works, see the [rustc dev guide]. | ||
|
||
[rustc guide]: https://rust-lang.github.io/rustc-guide/query.html | ||
[rustc dev guide]: https://rustc-dev-guide.rust-lang.org/query.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Makes me wonder if we should decide whether to use
rustc-dev-guide
orrustc dev guide
and stick to one of them, or if it is completely insignificantThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
well I was just naively translating things, unsure if it's significant but I guess we can discuss on a separate PR.