Skip to content

Commit aa896f3

Browse files
authored
Rollup merge of rust-lang#57856 - lzutao:fix-old-first-edition, r=steveklabnik
Convert old first edition links to current edition one r? @steveklabnik
2 parents 93ecae6 + e7f8e63 commit aa896f3

File tree

15 files changed

+65
-50
lines changed

15 files changed

+65
-50
lines changed

src/doc/guide-error-handling.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
% Error Handling in Rust
22

33
This content has moved into
4-
[the Rust Programming Language book](book/error-handling.html).
4+
[the Rust Programming Language book](book/ch09-00-error-handling.html).

src/doc/guide-ownership.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
% The (old) Rust Ownership Guide
22

33
This content has moved into
4-
[the Rust Programming Language book](book/ownership.html).
4+
[the Rust Programming Language book](book/ch04-00-understanding-ownership.html).

src/doc/guide-pointers.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
This content has been removed, with no direct replacement. Rust only
44
has two built-in pointer types now,
5-
[references](book/references-and-borrowing.html) and [raw
5+
[references](book/ch04-02-references-and-borrowing.html) and [raw
66
pointers](book/raw-pointers.html). Older Rusts had many more pointer
77
types, they’re gone now.

src/doc/guide-testing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
% The (old) Rust Testing Guide
22

33
This content has moved into
4-
[the Rust Programming Language book](book/testing.html).
4+
[the Rust Programming Language book](book/ch11-00-testing.html).

src/libcore/convert.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,6 @@ pub const fn identity<T>(x: T) -> T { x }
116116
/// - Use `Borrow` when the goal is related to writing code that is agnostic to
117117
/// the type of borrow and whether it is a reference or value
118118
///
119-
/// See [the book][book] for a more detailed comparison.
120-
///
121-
/// [book]: ../../book/first-edition/borrow-and-asref.html
122119
/// [`Borrow`]: ../../std/borrow/trait.Borrow.html
123120
///
124121
/// **Note: this trait must not fail**. If the conversion can fail, use a
@@ -351,7 +348,7 @@ pub trait Into<T>: Sized {
351348
/// [`String`]: ../../std/string/struct.String.html
352349
/// [`Into<U>`]: trait.Into.html
353350
/// [`from`]: trait.From.html#tymethod.from
354-
/// [book]: ../../book/first-edition/error-handling.html
351+
/// [book]: ../../book/ch09-00-error-handling.html
355352
#[stable(feature = "rust1", since = "1.0.0")]
356353
pub trait From<T>: Sized {
357354
/// Performs the conversion.

src/libcore/marker.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ impl<T: ?Sized> !Send for *mut T { }
7878
/// // be made into an object
7979
/// ```
8080
///
81-
/// [trait object]: ../../book/first-edition/trait-objects.html
81+
/// [trait object]: ../../book/ch17-02-trait-objects.html
8282
#[stable(feature = "rust1", since = "1.0.0")]
8383
#[lang = "sized"]
8484
#[rustc_on_unimplemented(
@@ -518,7 +518,7 @@ macro_rules! impls{
518518
/// types. We track the Rust type using a phantom type parameter on
519519
/// the struct `ExternalResource` which wraps a handle.
520520
///
521-
/// [FFI]: ../../book/first-edition/ffi.html
521+
/// [FFI]: ../../book/ch19-01-unsafe-rust.html#using-extern-functions-to-call-external-code
522522
///
523523
/// ```
524524
/// # #![allow(dead_code)]

src/libcore/mem.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ pub const fn size_of<T>() -> usize {
299299
/// then `size_of_val` can be used to get the dynamically-known size.
300300
///
301301
/// [slice]: ../../std/primitive.slice.html
302-
/// [trait object]: ../../book/first-edition/trait-objects.html
302+
/// [trait object]: ../../book/ch17-02-trait-objects.html
303303
///
304304
/// # Examples
305305
///

src/libproc_macro/lib.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@
55
//! function-like macros `#[proc_macro]`, macro attributes `#[proc_macro_attribute]` and
66
//! custom derive attributes`#[proc_macro_derive]`.
77
//!
8-
//! See [the book](../book/first-edition/procedural-macros.html) for more.
8+
//! See [the book] for more.
9+
//!
10+
//! [the book]: ../book/ch19-06-macros.html#procedural-macros-for-generating-code-from-attributes
911
1012
#![stable(feature = "proc_macro_lib", since = "1.15.0")]
1113
#![deny(missing_docs)]

src/librustc/diagnostics.rs

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// ignore-tidy-linelength
12
#![allow(non_snake_case)]
23

34
// Error messages for EXXXX errors.
@@ -410,7 +411,7 @@ fn baz<'a>(x: &'a str, y: &str) -> &str { }
410411
Lifetime elision in implementation headers was part of the lifetime elision
411412
RFC. It is, however, [currently unimplemented][iss15872].
412413
413-
[book-le]: https://doc.rust-lang.org/nightly/book/first-edition/lifetimes.html#lifetime-elision
414+
[book-le]: https://doc.rust-lang.org/book/ch10-03-lifetime-syntax.html#lifetime-elision
414415
[iss15872]: https://github.com/rust-lang/rust/issues/15872
415416
"##,
416417

@@ -646,7 +647,9 @@ attributes:
646647
#![no_std]
647648
```
648649
649-
See also https://doc.rust-lang.org/book/first-edition/no-stdlib.html
650+
See also the [unstable book][1].
651+
652+
[1]: https://doc.rust-lang.org/unstable-book/language-features/lang-items.html#writing-an-executable-without-stdlib
650653
"##,
651654

652655
E0214: r##"
@@ -1713,7 +1716,7 @@ fn main() {
17131716
```
17141717
17151718
To understand better how closures work in Rust, read:
1716-
https://doc.rust-lang.org/book/first-edition/closures.html
1719+
https://doc.rust-lang.org/book/ch13-01-closures.html
17171720
"##,
17181721

17191722
E0580: r##"

src/librustc_metadata/diagnostics.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ extern {}
3737
```
3838
3939
See more:
40-
https://doc.rust-lang.org/book/first-edition/conditional-compilation.html
40+
https://doc.rust-lang.org/reference/attributes.html#conditional-compilation
4141
"##,
4242

4343
E0458: r##"

src/librustc_mir/diagnostics.rs

+7-7
Original file line numberDiff line numberDiff line change
@@ -690,7 +690,7 @@ fn main() {
690690
}
691691
```
692692
693-
See also https://doc.rust-lang.org/book/first-edition/unsafe.html
693+
See also https://doc.rust-lang.org/book/ch19-01-unsafe-rust.html
694694
"##,
695695

696696
E0373: r##"
@@ -873,7 +873,7 @@ that at most one writer or multiple readers can access the data at any one time.
873873
If you wish to learn more about ownership in Rust, start with the chapter in the
874874
Book:
875875
876-
https://doc.rust-lang.org/book/first-edition/ownership.html
876+
https://doc.rust-lang.org/book/ch04-00-understanding-ownership.html
877877
"##,
878878

879879
E0383: r##"
@@ -1207,7 +1207,7 @@ let mut a = &mut i;
12071207
12081208
Please note that in rust, you can either have many immutable references, or one
12091209
mutable reference. Take a look at
1210-
https://doc.rust-lang.org/stable/book/references-and-borrowing.html for more
1210+
https://doc.rust-lang.org/book/ch04-02-references-and-borrowing.html for more
12111211
information. Example:
12121212
12131213
@@ -1374,7 +1374,7 @@ fn foo(a: &mut i32) {
13741374
```
13751375
13761376
For more information on the rust ownership system, take a look at
1377-
https://doc.rust-lang.org/stable/book/references-and-borrowing.html.
1377+
https://doc.rust-lang.org/book/ch04-02-references-and-borrowing.html.
13781378
"##,
13791379

13801380
E0503: r##"
@@ -1430,7 +1430,7 @@ fn main() {
14301430
```
14311431
14321432
You can find more information about borrowing in the rust-book:
1433-
http://doc.rust-lang.org/stable/book/references-and-borrowing.html
1433+
http://doc.rust-lang.org/book/ch04-02-references-and-borrowing.html
14341434
"##,
14351435

14361436
E0504: r##"
@@ -1614,7 +1614,7 @@ fn main() {
16141614
```
16151615
16161616
You can find more information about borrowing in the rust-book:
1617-
http://doc.rust-lang.org/stable/book/references-and-borrowing.html
1617+
http://doc.rust-lang.org/book/ch04-02-references-and-borrowing.html
16181618
"##,
16191619

16201620
E0506: r##"
@@ -1825,7 +1825,7 @@ mem::replace(&mut borrowed.knight, TheDarkKnight).nothing_is_true(); // ok!
18251825
```
18261826
18271827
You can find more information about borrowing in the rust-book:
1828-
http://doc.rust-lang.org/book/first-edition/references-and-borrowing.html
1828+
http://doc.rust-lang.org/book/ch04-02-references-and-borrowing.html
18291829
"##,
18301830

18311831
E0508: r##"

src/librustc_typeck/diagnostics.rs

+34-21
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// ignore-tidy-linelength
12
#![allow(non_snake_case)]
23

34
register_long_diagnostics! {
@@ -1544,7 +1545,9 @@ fn f<T>() {}
15441545
15451546
It is not possible to declare type parameters on a function that has the `start`
15461547
attribute. Such a function must have the following type signature (for more
1547-
information: http://doc.rust-lang.org/stable/book/first-edition/no-stdlib.html):
1548+
information, view [the unstable book][1]):
1549+
1550+
[1]: https://doc.rust-lang.org/unstable-book/language-features/lang-items.html#writing-an-executable-without-stdlib
15481551
15491552
```
15501553
# let _:
@@ -2918,10 +2921,11 @@ impl Baz for Bar { } // Note: This is OK
29182921

29192922
E0374: r##"
29202923
A struct without a field containing an unsized type cannot implement
2921-
`CoerceUnsized`. An
2922-
[unsized type](https://doc.rust-lang.org/book/first-edition/unsized-types.html)
2923-
is any type that the compiler doesn't know the length or alignment of at
2924-
compile time. Any struct containing an unsized type is also unsized.
2924+
`CoerceUnsized`. An [unsized type][1] is any type that the compiler
2925+
doesn't know the length or alignment of at compile time. Any struct
2926+
containing an unsized type is also unsized.
2927+
2928+
[1]: https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait
29252929
29262930
Example of erroneous code:
29272931
@@ -2978,9 +2982,9 @@ A struct with more than one field containing an unsized type cannot implement
29782982
`CoerceUnsized`. This only occurs when you are trying to coerce one of the
29792983
types in your struct to another type in the struct. In this case we try to
29802984
impl `CoerceUnsized` from `T` to `U` which are both types that the struct
2981-
takes. An [unsized type] is any type that the compiler doesn't know the length
2982-
or alignment of at compile time. Any struct containing an unsized type is also
2983-
unsized.
2985+
takes. An [unsized type][1] is any type that the compiler doesn't know the
2986+
length or alignment of at compile time. Any struct containing an unsized type
2987+
is also unsized.
29842988
29852989
Example of erroneous code:
29862990
@@ -3025,19 +3029,20 @@ fn coerce_foo<T: CoerceUnsized<U>, U>(t: T) -> Foo<U> {
30253029
}
30263030
```
30273031
3028-
[unsized type]: https://doc.rust-lang.org/book/first-edition/unsized-types.html
3032+
[1]: https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait
30293033
"##,
30303034

30313035
E0376: r##"
30323036
The type you are trying to impl `CoerceUnsized` for is not a struct.
30333037
`CoerceUnsized` can only be implemented for a struct. Unsized types are
30343038
already able to be coerced without an implementation of `CoerceUnsized`
30353039
whereas a struct containing an unsized type needs to know the unsized type
3036-
field it's containing is able to be coerced. An
3037-
[unsized type](https://doc.rust-lang.org/book/first-edition/unsized-types.html)
3040+
field it's containing is able to be coerced. An [unsized type][1]
30383041
is any type that the compiler doesn't know the length or alignment of at
30393042
compile time. Any struct containing an unsized type is also unsized.
30403043
3044+
[1]: https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait
3045+
30413046
Example of erroneous code:
30423047
30433048
```compile_fail,E0376
@@ -3883,8 +3888,10 @@ let c = 86u8 as char; // ok!
38833888
assert_eq!(c, 'V');
38843889
```
38853890
3886-
For more information about casts, take a look at The Book:
3887-
https://doc.rust-lang.org/book/first-edition/casting-between-types.html
3891+
For more information about casts, take a look at the Type cast section in
3892+
[The Reference Book][1].
3893+
3894+
[1]: https://doc.rust-lang.org/reference/expressions/operator-expr.html#type-cast-expressions
38883895
"##,
38893896

38903897
E0605: r##"
@@ -3912,8 +3919,10 @@ let v = 0 as *const u8;
39123919
v as *const i8; // ok!
39133920
```
39143921
3915-
For more information about casts, take a look at The Book:
3916-
https://doc.rust-lang.org/book/first-edition/casting-between-types.html
3922+
For more information about casts, take a look at the Type cast section in
3923+
[The Reference Book][1].
3924+
3925+
[1]: https://doc.rust-lang.org/reference/expressions/operator-expr.html#type-cast-expressions
39173926
"##,
39183927

39193928
E0606: r##"
@@ -3934,8 +3943,10 @@ let x = &0u8;
39343943
let y: u32 = *x as u32; // We dereference it first and then cast it.
39353944
```
39363945
3937-
For more information about casts, take a look at The Book:
3938-
https://doc.rust-lang.org/book/first-edition/casting-between-types.html
3946+
For more information about casts, take a look at the Type cast section in
3947+
[The Reference Book][1].
3948+
3949+
[1]: https://doc.rust-lang.org/reference/expressions/operator-expr.html#type-cast-expressions
39393950
"##,
39403951

39413952
E0607: r##"
@@ -3961,8 +3972,10 @@ pointer holds is their size.
39613972
39623973
To fix this error, don't try to cast directly between thin and fat pointers.
39633974
3964-
For more information about casts, take a look at The Book:
3965-
https://doc.rust-lang.org/book/first-edition/casting-between-types.html
3975+
For more information about casts, take a look at the Type cast section in
3976+
[The Reference Book][1].
3977+
3978+
[1]: https://doc.rust-lang.org/reference/expressions/operator-expr.html#type-cast-expressions
39663979
"##,
39673980

39683981
E0609: r##"
@@ -4020,8 +4033,8 @@ println!("x: {}, y: {}", variable.x, variable.y);
40204033
```
40214034
40224035
For more information about primitives and structs, take a look at The Book:
4023-
https://doc.rust-lang.org/book/first-edition/primitive-types.html
4024-
https://doc.rust-lang.org/book/first-edition/structs.html
4036+
https://doc.rust-lang.org/book/ch03-02-data-types.html
4037+
https://doc.rust-lang.org/book/ch05-00-structs.html
40254038
"##,
40264039

40274040
E0614: r##"

src/librustc_typeck/structured_errors.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ To fix this error, don't try to cast directly between thin and fat
137137
pointers.
138138
139139
For more information about casts, take a look at The Book:
140-
https://doc.rust-lang.org/book/first-edition/casting-between-types.html");
140+
https://doc.rust-lang.org/reference/expressions/operator-expr.html#type-cast-expressions");
141141
err
142142
}
143143
}

src/libstd/prelude/mod.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -129,10 +129,10 @@
129129
//! [`std::string`]: ../string/index.html
130130
//! [`std::vec`]: ../vec/index.html
131131
//! [`to_owned`]: ../borrow/trait.ToOwned.html#tymethod.to_owned
132-
//! [book-closures]: ../../book/first-edition/closures.html
133-
//! [book-dtor]: ../../book/first-edition/drop.html
134-
//! [book-enums]: ../../book/first-edition/enums.html
135-
//! [book-iter]: ../../book/first-edition/iterators.html
132+
//! [book-closures]: ../../book/ch13-01-closures.html
133+
//! [book-dtor]: ../../book/ch15-03-drop.html
134+
//! [book-enums]: ../../book/ch06-01-defining-an-enum.html
135+
//! [book-iter]: ../../book/ch13-02-iterators.html
136136
137137
#![stable(feature = "rust1", since = "1.0.0")]
138138

src/libtest/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//! benchmarks themselves) should be done via the `#[test]` and
77
//! `#[bench]` attributes.
88
//!
9-
//! See the [Testing Chapter](../book/first-edition/testing.html) of the book for more details.
9+
//! See the [Testing Chapter](../book/ch11-00-testing.html) of the book for more details.
1010
1111
// Currently, not much of this is meant for users. It is intended to
1212
// support the simplest interface possible for representing and

0 commit comments

Comments
 (0)