Skip to content

Commit a524143

Browse files
committed
Rollup merge of #56257 - mark-i-m:rustc-guide-links, r=nikomatsakis
rustc-guide has moved to rust-lang/ r? @nikomatsakis
2 parents ee531da + 6494f1e commit a524143

File tree

36 files changed

+48
-48
lines changed

36 files changed

+48
-48
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -640,13 +640,13 @@ are:
640640
* **Google!** ([search only in Rust Documentation][gsearchdocs] to find types, traits, etc. quickly)
641641
* Don't be afraid to ask! The Rust community is friendly and helpful.
642642

643-
[rustc guide]: https://rust-lang-nursery.github.io/rustc-guide/about-this-guide.html
643+
[rustc guide]: https://rust-lang.github.io/rustc-guide/about-this-guide.html
644644
[gdfrustc]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc/
645645
[gsearchdocs]: https://www.google.com/search?q=site:doc.rust-lang.org+your+query+here
646646
[rif]: http://internals.rust-lang.org
647647
[rr]: https://doc.rust-lang.org/book/README.html
648648
[rustforge]: https://forge.rust-lang.org/
649649
[tlgba]: http://tomlee.co/2014/04/a-more-detailed-tour-of-the-rust-compiler/
650650
[ro]: http://www.rustaceans.org/
651-
[rctd]: https://rust-lang-nursery.github.io/rustc-guide/tests/intro.html
651+
[rctd]: https://rust-lang.github.io/rustc-guide/tests/intro.html
652652
[cheatsheet]: https://buildbot2.rust-lang.org/homu/

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ Also, you may find the [rustdocs for the compiler itself][rustdocs] useful.
233233
[IRC]: https://en.wikipedia.org/wiki/Internet_Relay_Chat
234234
[#rust]: irc://irc.mozilla.org/rust
235235
[#rust-beginners]: irc://irc.mozilla.org/rust-beginners
236-
[rustc guide]: https://rust-lang-nursery.github.io/rustc-guide/about-this-guide.html
236+
[rustc guide]: https://rust-lang.github.io/rustc-guide/about-this-guide.html
237237
[rustdocs]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc/
238238

239239
## License

src/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ There is also useful content in the following READMEs, which are gradually being
1212
- https://github.com/rust-lang/rust/tree/master/src/librustc/infer/higher_ranked
1313
- https://github.com/rust-lang/rust/tree/master/src/librustc/infer/lexical_region_resolve
1414

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

src/doc/rustc/src/contributing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Contributing to rustc
22

33
We'd love to have your help improving `rustc`! To that end, we've written [a
4-
whole book](https://rust-lang-nursery.github.io/rustc-guide/) on its
4+
whole book](https://rust-lang.github.io/rustc-guide/) on its
55
internals, how it works, and how to get started working on it. To learn
6-
more, you'll want to check that out.
6+
more, you'll want to check that out.

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

src/librustc/dep_graph/graph.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ impl DepGraph {
195195
/// - If you need 3+ arguments, use a tuple for the
196196
/// `arg` parameter.
197197
///
198-
/// [rustc guide]: https://rust-lang-nursery.github.io/rustc-guide/incremental-compilation.html
198+
/// [rustc guide]: https://rust-lang.github.io/rustc-guide/incremental-compilation.html
199199
pub fn with_task<'gcx, C, A, R>(&self,
200200
key: DepNode,
201201
cx: C,

src/librustc/hir/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -689,7 +689,7 @@ pub struct WhereEqPredicate {
689689
///
690690
/// For more details, see the [rustc guide].
691691
///
692-
/// [rustc guide]: https://rust-lang-nursery.github.io/rustc-guide/hir.html
692+
/// [rustc guide]: https://rust-lang.github.io/rustc-guide/hir.html
693693
#[derive(Clone, RustcEncodable, RustcDecodable, Debug)]
694694
pub struct Crate {
695695
pub module: Mod,

src/librustc/infer/canonical/canonicalizer.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
//! For an overview of what canonicalization is and how it fits into
1414
//! rustc, check out the [chapter in the rustc guide][c].
1515
//!
16-
//! [c]: https://rust-lang-nursery.github.io/rustc-guide/traits/canonicalization.html
16+
//! [c]: https://rust-lang.github.io/rustc-guide/traits/canonicalization.html
1717
1818
use infer::canonical::{
1919
Canonical, CanonicalTyVarKind, CanonicalVarInfo, CanonicalVarKind, Canonicalized,
@@ -44,7 +44,7 @@ impl<'cx, 'gcx, 'tcx> InferCtxt<'cx, 'gcx, 'tcx> {
4444
/// To get a good understanding of what is happening here, check
4545
/// out the [chapter in the rustc guide][c].
4646
///
47-
/// [c]: https://rust-lang-nursery.github.io/rustc-guide/traits/canonicalization.html#canonicalizing-the-query
47+
/// [c]: https://rust-lang.github.io/rustc-guide/traits/canonicalization.html#canonicalizing-the-query
4848
pub fn canonicalize_query<V>(
4949
&self,
5050
value: &V,
@@ -92,7 +92,7 @@ impl<'cx, 'gcx, 'tcx> InferCtxt<'cx, 'gcx, 'tcx> {
9292
/// To get a good understanding of what is happening here, check
9393
/// out the [chapter in the rustc guide][c].
9494
///
95-
/// [c]: https://rust-lang-nursery.github.io/rustc-guide/traits/canonicalization.html#canonicalizing-the-query-result
95+
/// [c]: https://rust-lang.github.io/rustc-guide/traits/canonicalization.html#canonicalizing-the-query-result
9696
pub fn canonicalize_response<V>(&self, value: &V) -> Canonicalized<'gcx, V>
9797
where
9898
V: TypeFoldable<'tcx> + Lift<'gcx>,

src/librustc/infer/canonical/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
//! For a more detailed look at what is happening here, check
3030
//! out the [chapter in the rustc guide][c].
3131
//!
32-
//! [c]: https://rust-lang-nursery.github.io/rustc-guide/traits/canonicalization.html
32+
//! [c]: https://rust-lang.github.io/rustc-guide/traits/canonicalization.html
3333
3434
use infer::{InferCtxt, RegionVariableOrigin, TypeVariableOrigin};
3535
use rustc_data_structures::indexed_vec::IndexVec;

0 commit comments

Comments
 (0)