Skip to content

Commit 2726923

Browse files
authored
Update some projects locations (#658)
1 parent 8a1879a commit 2726923

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

src/compiler-debugging.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -261,8 +261,8 @@ until it finds the regression. You can then look at the PR to get more context
261261
on *why* it was changed. See [this tutorial][bisect-tutorial] on how to use
262262
it.
263263
264-
[bisect]: https://github.com/rust-lang-nursery/cargo-bisect-rustc
265-
[bisect-tutorial]: https://github.com/rust-lang-nursery/cargo-bisect-rustc/blob/master/TUTORIAL.md
264+
[bisect]: https://github.com/rust-lang/cargo-bisect-rustc
265+
[bisect-tutorial]: https://github.com/rust-lang/cargo-bisect-rustc/blob/master/TUTORIAL.md
266266
267267
## Downloading Artifacts from Rust's CI
268268

src/conventions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ enforced by a script we affectionately call the "tidy" script. The
1414
tidy script runs automatically when you do `./x.py test` and can be run
1515
in isolation with `./x.py test tidy`.
1616

17-
[fmt]: https://github.com/rust-lang-nursery/fmt-rfcs
17+
[fmt]: https://github.com/rust-dev-tools/fmt-rfcs
1818

1919
<a name="copyright"></a>
2020

src/diagnostics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ is passed) as JSON for consumption by tools, most notably the [Rust Language
8282
Server][rls] and [`rustfix`][rustfix].
8383

8484
[rls]: https://github.com/rust-lang/rls
85-
[rustfix]: https://github.com/rust-lang-nursery/rustfix
85+
[rustfix]: https://github.com/rust-lang/rustfix
8686

8787
Not all suggestions should be applied mechanically. Use the
8888
[`span_suggestion`][span_suggestion] method of `DiagnosticBuilder` to

src/profiling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This section talks about how to profile the compiler and find out where it spend
55
Depending on what you're trying to measure, there are several different approaches:
66

77
- If you want to see if a PR improves or regresses compiler performance:
8-
- The [rustc-perf](https://github.com/rust-lang-nursery/rustc-perf) project makes this easy and can be triggered to run on a PR via the `@rustc-perf` bot.
8+
- The [rustc-perf](https://github.com/rust-lang/rustc-perf) project makes this easy and can be triggered to run on a PR via the `@rustc-perf` bot.
99

1010
- If you want a medium-to-high level overview of where `rustc` is spending its time:
1111
- The `-Zself-profile` flag and [measureme](https://github.com/rust-lang/measureme) tools offer a query-based approach to profiling.

src/profiling/with_perf.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,18 +59,18 @@ do that, the first step is to clone
5959
[the rustc-perf repository][rustc-perf-gh]:
6060

6161
```bash
62-
git clone https://github.com/rust-lang-nursery/rustc-perf
62+
git clone https://github.com/rust-lang/rustc-perf
6363
```
6464

65-
[rustc-perf-gh]: https://github.com/rust-lang-nursery/rustc-perf
65+
[rustc-perf-gh]: https://github.com/rust-lang/rustc-perf
6666

6767
#### Doing it the easy way
6868

6969
Once you've cloned the repo, you can use the `collector` executable to
7070
do profiling for you! You can find
7171
[instructions in the rustc-perf readme][rustc-perf-readme].
7272

73-
[rustc-perf-readme]: https://github.com/rust-lang-nursery/rustc-perf/blob/master/collector/README.md#profiling
73+
[rustc-perf-readme]: https://github.com/rust-lang/rustc-perf/blob/master/collector/README.md#profiling
7474

7575
For example, to measure the clap-rs test, you might do:
7676

@@ -94,7 +94,7 @@ are found in [the `collector/benchmarks` directory][dir]. So let's go
9494
into the directory of a specific test; we'll use `clap-rs` as an
9595
example:
9696

97-
[dir]: https://github.com/rust-lang-nursery/rustc-perf/tree/master/collector/benchmarks
97+
[dir]: https://github.com/rust-lang/rustc-perf/tree/master/collector/benchmarks
9898

9999
```bash
100100
cd collector/benchmarks/clap-rs

src/tests/intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ communicate with the server to coordinate running tests (see
183183

184184
## Crater
185185

186-
[Crater](https://github.com/rust-lang-nursery/crater) is a tool for compiling
186+
[Crater](https://github.com/rust-lang/crater) is a tool for compiling
187187
and running tests for _every_ crate on [crates.io](https://crates.io) (and a
188188
few on GitHub). It is mainly used for checking for extent of breakage when
189189
implementing potentially breaking changes and ensuring lack of breakage by

src/traits/goals-and-clauses.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ In terms of code, these types are defined in
4343

4444
[pphhf]: ./bibliography.html#pphhf
4545
[traits_mod]: https://github.com/rust-lang/rust/blob/master/src/librustc_middle/traits/mod.rs
46-
[chalk_ir]: https://github.com/rust-lang-nursery/chalk/blob/master/chalk-ir/src/lib.rs
46+
[chalk_ir]: https://github.com/rust-lang/chalk/blob/master/chalk-ir/src/lib.rs
4747

4848
<a name="domain-goals"></a>
4949

0 commit comments

Comments
 (0)