You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-10
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,12 @@
1
-

1
+

2
2
3
3
4
4
This is a collaborative effort to build a guide that explains how rustc
5
5
works. The aim of the guide is to help new contributors get oriented
6
6
to rustc, as well as to help more experienced folks in figuring out
7
7
some new part of the compiler that they haven't worked on before.
8
8
9
-
[You can read the latest version of the guide here.](https://rust-lang.github.io/rustc-guide/)
9
+
[You can read the latest version of the guide here.](https://rustc-dev-guide.rust-lang.org/)
10
10
11
11
You may also find the rustdocs [for the compiler itself][rustdocs] useful.
12
12
@@ -18,7 +18,7 @@ The guide is useful today, but it has a lot of work still go.
18
18
19
19
If you'd like to help improve the guide, we'd love to have you! You can find
20
20
plenty of issues on the [issue
21
-
tracker](https://github.com/rust-lang/rustc-guide/issues). Just post a
21
+
tracker](https://github.com/rust-lang/rustc-dev-guide/issues). Just post a
22
22
comment on the issue you would like to work on to make sure that we don't
23
23
accidentally duplicate work. If you think something is missing, please open an
24
24
issue about it!
@@ -55,28 +55,28 @@ You will need `mdbook` version `>= 0.3.5` and `mdbook-linkcheck` version `>= 0.5
55
55
56
56
4. Follow the check-azure link to get to the Azure website for that build: https://dev.azure.com/rust-lang/e71b0ddf-dd27-435a-873c-e30f86eea377/_build/results?buildId=7780
57
57
58
-
5. There will be approximately 1 billion different jobs for the build. They are for different configurations and platforms. The rustc-guide build only runs on the Linux x86_64-gnu-tools job. So click on that job in the list, which is about 60% down in the list.
58
+
5. There will be approximately 1 billion different jobs for the build. They are for different configurations and platforms. The rustc-dev-guide build only runs on the Linux x86_64-gnu-tools job. So click on that job in the list, which is about 60% down in the list.
59
59
60
60
6. Click the Run build step in the job to get the console log for the step.
61
61
62
62
7. Click on the log and Ctrl-f to get a search box in the log
63
63
64
-
8. Search for rustc-guide. This gets you to the place where the links are checked. It is usually ~11K lines into the log
64
+
8. Search for rustc-dev-guide. This gets you to the place where the links are checked. It is usually ~11K lines into the log
65
65
66
66
9. Look at the links in the log near that point in the log
67
67
68
-
10. Fix those links in the rustc-guide (by making a PR in the rustc-guide repo)
68
+
10. Fix those links in the rustc-dev-guide (by making a PR in the rustc-dev-guide repo)
69
69
70
-
11. Make a PR on the rust-lang/rust repo to update the rustc-guide git submodule in src/docs/rustc-guide.
70
+
11. Make a PR on the rust-lang/rust repo to update the rustc-dev-guide git submodule in src/docs/rustc-dev-guide.
71
71
To make a PR, the following steps are useful.
72
72
73
73
```bash
74
74
# Assuming you already cloned the rust-lang/rust repo and you're in the correct directory
Copy file name to clipboardExpand all lines: src/implementing_new_features.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -106,8 +106,8 @@ for stabilization in a checklist, e.g.,
106
106
107
107
- [ ] Implement the RFC. (CC @rust-lang/compiler -- can anyone write
108
108
up mentoring instructions?)
109
-
- [ ] Adjust the documentation. ([See instructions on rustc-guide.](https://rust-lang.github.io/rustc-guide/stabilization_guide.html#documentation-prs))
110
-
- [ ] Stabilize the feature. ([See instructions on rustc-guide.](https://rust-lang.github.io/rustc-guide/stabilization_guide.html#stabilization-pr))
109
+
- [ ] Adjust the documentation. ([See instructions on rustc-dev-guide.](https://rustc-dev-guide.rust-lang.org/stabilization_guide.html#documentation-prs))
110
+
- [ ] Stabilize the feature. ([See instructions on rustc-dev-guide.](https://rustc-dev-guide.rust-lang.org/stabilization_guide.html#stabilization-pr))
0 commit comments