Skip to content

Commit 5b218f4

Browse files
committed
rust-lang.github.io/rustc-dev-guide -> rustc-dev-guide.rust-lang.org
1 parent b6ab078 commit 5b218f4

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ works. The aim of the guide is to help new contributors get oriented
66
to rustc, as well as to help more experienced folks in figuring out
77
some new part of the compiler that they haven't worked on before.
88

9-
[You can read the latest version of the guide here.](https://rust-lang.github.io/rustc-dev-guide/)
9+
[You can read the latest version of the guide here.](https://rustc-dev-guide.rust-lang.org/)
1010

1111
You may also find the rustdocs [for the compiler itself][rustdocs] useful.
1212

src/implementing_new_features.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ for stabilization in a checklist, e.g.,
106106
107107
- [ ] Implement the RFC. (CC @rust-lang/compiler -- can anyone write
108108
up mentoring instructions?)
109-
- [ ] Adjust the documentation. ([See instructions on rustc-dev-guide.](https://rust-lang.github.io/rustc-dev-guide/stabilization_guide.html#documentation-prs))
110-
- [ ] Stabilize the feature. ([See instructions on rustc-dev-guide.](https://rust-lang.github.io/rustc-dev-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))
111111
```
112112

113113
<a name="stability-in-code"></a>

src/mir/optimizations.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ to do, so compilation is faster. Note that since MIR is generic (not
88
effective; we can optimize the generic version, so all of the monomorphizations
99
are cheaper!
1010

11-
[mir]: https://rust-lang.github.io/rustc-dev-guide/mir/index.html
12-
[monomorph]: https://rust-lang.github.io/rustc-dev-guide/appendix/glossary.html?highlight=monomorphize#appendix-c-glossary
11+
[mir]: https://rustc-dev-guide.rust-lang.org/mir/index.html
12+
[monomorph]: https://rustc-dev-guide.rust-lang.org/appendix/glossary.html?highlight=monomorphize#appendix-c-glossary
1313

1414
MIR optimizations run after borrow checking. We run a series of optimization
1515
passes over the MIR to improve it. Some passes are required to run on all code,
@@ -22,9 +22,9 @@ run and that some validation has occurred. Then, it [steals][steal] the MIR
2222
optimizes it, and returns the improved MIR.
2323

2424
[optmir]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_mir/transform/fn.optimized_mir.html
25-
[query]: https://rust-lang.github.io/rustc-dev-guide/query.html
26-
[defid]: https://rust-lang.github.io/rustc-dev-guide/appendix/glossary.html?highlight=DefId#appendix-c-glossary
27-
[steal]: https://rust-lang.github.io/rustc-dev-guide/mir/passes.html?highlight=steal#stealing
25+
[query]: https://rustc-dev-guide.rust-lang.org/query.html
26+
[defid]: https://rustc-dev-guide.rust-lang.org/appendix/glossary.html?highlight=DefId#appendix-c-glossary
27+
[steal]: https://rustc-dev-guide.rust-lang.org/mir/passes.html?highlight=steal#stealing
2828

2929
## Defining optimization passes
3030

0 commit comments

Comments
 (0)