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
Rollup merge of #103588 - weihanglo:rustdoc/url-redirect, r=notriddle
rustdoc: add missing URL redirect
#94753 missed some redirect settings, and one of the missing URL shows up in an error message. This PR adds those redirects.
LL | //! Linking to [foo@banana] and [`bar@banana!()`].
5
5
| ^^^
6
6
|
7
-
= note: see https://doc.rust-lang.org/$CHANNEL/rustdoc/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
7
+
= note: see https://doc.rust-lang.org/$CHANNEL/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
LL | //! Linking to [foo@banana] and [`bar@banana!()`].
19
19
| ^^^
20
20
|
21
-
= note: see https://doc.rust-lang.org/$CHANNEL/rustdoc/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
21
+
= note: see https://doc.rust-lang.org/$CHANNEL/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
22
22
23
23
error: unknown disambiguator `foo`
24
24
--> $DIR/unknown-disambiguator.rs:10:34
25
25
|
26
26
LL | //! And with weird backticks: [``foo@hello``] [foo`@`hello].
27
27
| ^^^
28
28
|
29
-
= note: see https://doc.rust-lang.org/$CHANNEL/rustdoc/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
29
+
= note: see https://doc.rust-lang.org/$CHANNEL/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
30
30
31
31
error: unknown disambiguator `foo`
32
32
--> $DIR/unknown-disambiguator.rs:10:48
33
33
|
34
34
LL | //! And with weird backticks: [``foo@hello``] [foo`@`hello].
35
35
| ^^^
36
36
|
37
-
= note: see https://doc.rust-lang.org/$CHANNEL/rustdoc/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
37
+
= note: see https://doc.rust-lang.org/$CHANNEL/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
38
38
39
39
error: unknown disambiguator ``
40
40
--> $DIR/unknown-disambiguator.rs:7:31
41
41
|
42
42
LL | //! And to [no disambiguator](@nectarine) and [another](@apricot!()).
43
43
| ^
44
44
|
45
-
= note: see https://doc.rust-lang.org/$CHANNEL/rustdoc/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
45
+
= note: see https://doc.rust-lang.org/$CHANNEL/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
46
46
47
47
error: unknown disambiguator ``
48
48
--> $DIR/unknown-disambiguator.rs:7:57
49
49
|
50
50
LL | //! And to [no disambiguator](@nectarine) and [another](@apricot!()).
51
51
| ^
52
52
|
53
-
= note: see https://doc.rust-lang.org/$CHANNEL/rustdoc/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
53
+
= note: see https://doc.rust-lang.org/$CHANNEL/rustdoc/write-documentation/linking-to-items-by-name.html#namespaces-and-disambiguators for more info about disambiguators
0 commit comments