Skip to content

Commit fa54567

Browse files
committed
rustdoc: cleaner errors on disambiguator/namespace mismatches
1 parent 267cf8d commit fa54567

File tree

6 files changed

+32
-23
lines changed

6 files changed

+32
-23
lines changed

src/librustdoc/passes/collect_intra_doc_links.rs

+14-5
Original file line numberDiff line numberDiff line change
@@ -1996,11 +1996,20 @@ fn resolution_failure(
19961996
&diag_info,
19971997
);
19981998

1999-
format!(
2000-
"this link resolves to {}, which is not in the {} namespace",
2001-
item(res),
2002-
expected_ns.descr()
2003-
)
1999+
if let Some(disambiguator) = disambiguator && !matches!(disambiguator, Disambiguator::Namespace(..)) {
2000+
format!(
2001+
"this link resolves to {}, which is not {} {}",
2002+
item(res),
2003+
disambiguator.article(),
2004+
disambiguator.descr()
2005+
)
2006+
} else {
2007+
format!(
2008+
"this link resolves to {}, which is not in the {} namespace",
2009+
item(res),
2010+
expected_ns.descr()
2011+
)
2012+
}
20042013
}
20052014
};
20062015
if let Some(span) = sp {

tests/rustdoc-ui/intra-doc/disambiguator-mismatch.stderr

+3-3
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ error: unresolved link to `m`
7474
--> $DIR/disambiguator-mismatch.rs:52:14
7575
|
7676
LL | /// Link to [m()]
77-
| ^^^ this link resolves to the macro `m`, which is not in the value namespace
77+
| ^^^ this link resolves to the macro `m`, which is not a function
7878
|
7979
help: to link to the macro, add an exclamation mark
8080
|
@@ -142,7 +142,7 @@ error: unresolved link to `std`
142142
--> $DIR/disambiguator-mismatch.rs:83:14
143143
|
144144
LL | /// Link to [fn@std]
145-
| ^^^^^^ this link resolves to the crate `std`, which is not in the value namespace
145+
| ^^^^^^ this link resolves to the crate `std`, which is not a function
146146
|
147147
help: to link to the crate, prefix with `mod@`
148148
|
@@ -164,7 +164,7 @@ error: unresolved link to `S::A`
164164
--> $DIR/disambiguator-mismatch.rs:93:14
165165
|
166166
LL | /// Link to [field@S::A]
167-
| ^^^^^^^^^^ this link resolves to the variant `A`, which is not in the value namespace
167+
| ^^^^^^^^^^ this link resolves to the variant `A`, which is not a field
168168
|
169169
help: to link to the variant, prefix with `variant@`
170170
|

tests/rustdoc-ui/intra-doc/errors.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ pub trait T {
9898
/// [m()]
9999
//~^ ERROR unresolved link
100100
//~| HELP to link to the macro
101-
//~| NOTE not in the value namespace
101+
//~| NOTE not a function
102102
#[macro_export]
103103
macro_rules! m {
104104
() => {};

tests/rustdoc-ui/intra-doc/errors.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ error: unresolved link to `S`
104104
--> $DIR/errors.rs:68:6
105105
|
106106
LL | /// [S!]
107-
| ^^ this link resolves to the struct `S`, which is not in the macro namespace
107+
| ^^ this link resolves to the struct `S`, which is not a macro
108108
|
109109
help: to link to the struct, prefix with `struct@`
110110
|
@@ -158,7 +158,7 @@ error: unresolved link to `m`
158158
--> $DIR/errors.rs:98:6
159159
|
160160
LL | /// [m()]
161-
| ^^^ this link resolves to the macro `m`, which is not in the value namespace
161+
| ^^^ this link resolves to the macro `m`, which is not a function
162162
|
163163
help: to link to the macro, add an exclamation mark
164164
|

tests/rustdoc-ui/intra-doc/issue-110495-suffix-with-space.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ error: unresolved link to `Clone`
22
--> $DIR/issue-110495-suffix-with-space.rs:3:6
33
|
44
LL | //! [Clone ()].
5-
| ^^^^^^^^ this link resolves to the trait `Clone`, which is not in the value namespace
5+
| ^^^^^^^^ this link resolves to the trait `Clone`, which is not a function
66
|
77
note: the lint level is defined here
88
--> $DIR/issue-110495-suffix-with-space.rs:2:9
@@ -31,7 +31,7 @@ error: unresolved link to `Clone`
3131
--> $DIR/issue-110495-suffix-with-space.rs:5:7
3232
|
3333
LL | //! [`Clone ()`].
34-
| ^^^^^^^^ this link resolves to the trait `Clone`, which is not in the value namespace
34+
| ^^^^^^^^ this link resolves to the trait `Clone`, which is not a function
3535
|
3636
help: to link to the trait, prefix with `trait@`
3737
|

tests/rustdoc-ui/intra-doc/weird-syntax.stderr

+10-10
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ error: unresolved link to `Clone`
4040
--> $DIR/weird-syntax.rs:27:9
4141
|
4242
LL | /// [ `Clone ()` ]
43-
| ^^^^^^^^ this link resolves to the trait `Clone`, which is not in the value namespace
43+
| ^^^^^^^^ this link resolves to the trait `Clone`, which is not a function
4444
|
4545
help: to link to the trait, prefix with `trait@`
4646
|
@@ -52,7 +52,7 @@ error: unresolved link to `Clone`
5252
--> $DIR/weird-syntax.rs:30:7
5353
|
5454
LL | /// [`Clone ()` ]
55-
| ^^^^^^^^ this link resolves to the trait `Clone`, which is not in the value namespace
55+
| ^^^^^^^^ this link resolves to the trait `Clone`, which is not a function
5656
|
5757
help: to link to the trait, prefix with `trait@`
5858
|
@@ -64,7 +64,7 @@ error: unresolved link to `Clone`
6464
--> $DIR/weird-syntax.rs:33:9
6565
|
6666
LL | /// [ `Clone ()`]
67-
| ^^^^^^^^ this link resolves to the trait `Clone`, which is not in the value namespace
67+
| ^^^^^^^^ this link resolves to the trait `Clone`, which is not a function
6868
|
6969
help: to link to the trait, prefix with `trait@`
7070
|
@@ -76,7 +76,7 @@ error: unresolved link to `Clone`
7676
--> $DIR/weird-syntax.rs:36:9
7777
|
7878
LL | /// [```Clone ()```]
79-
| ^^^^^^^^ this link resolves to the trait `Clone`, which is not in the value namespace
79+
| ^^^^^^^^ this link resolves to the trait `Clone`, which is not a function
8080
|
8181
help: to link to the trait, prefix with `trait@`
8282
|
@@ -88,7 +88,7 @@ error: unresolved link to `Clone`
8888
--> $DIR/weird-syntax.rs:42:13
8989
|
9090
LL | /// [ ``` Clone () ``` ]
91-
| ^^^^^^^^ this link resolves to the trait `Clone`, which is not in the value namespace
91+
| ^^^^^^^^ this link resolves to the trait `Clone`, which is not a function
9292
|
9393
help: to link to the trait, prefix with `trait@`
9494
|
@@ -122,7 +122,7 @@ error: unresolved link to `Clone`
122122
--> $DIR/weird-syntax.rs:74:9
123123
|
124124
LL | /// [x][Clone()]
125-
| ^^^^^^^ this link resolves to the trait `Clone`, which is not in the value namespace
125+
| ^^^^^^^ this link resolves to the trait `Clone`, which is not a function
126126
|
127127
help: to link to the trait, prefix with `trait@`
128128
|
@@ -134,7 +134,7 @@ error: unresolved link to `Clone`
134134
--> $DIR/weird-syntax.rs:77:9
135135
|
136136
LL | /// [x][Clone ()]
137-
| ^^^^^^^^^ this link resolves to the trait `Clone`, which is not in the value namespace
137+
| ^^^^^^^^^ this link resolves to the trait `Clone`, which is not a function
138138
|
139139
help: to link to the trait, prefix with `trait@`
140140
|
@@ -176,7 +176,7 @@ error: unresolved link to `Clone`
176176
--> $DIR/weird-syntax.rs:97:9
177177
|
178178
LL | /// [w](Clone\(\))
179-
| ^^^^^^^^^ this link resolves to the trait `Clone`, which is not in the value namespace
179+
| ^^^^^^^^^ this link resolves to the trait `Clone`, which is not a function
180180
|
181181
help: to link to the trait, prefix with `trait@`
182182
|
@@ -188,7 +188,7 @@ error: unresolved link to `Clone`
188188
--> $DIR/weird-syntax.rs:103:9
189189
|
190190
LL | /// [w](Clone())
191-
| ^^^^^^^ this link resolves to the trait `Clone`, which is not in the value namespace
191+
| ^^^^^^^ this link resolves to the trait `Clone`, which is not a function
192192
|
193193
help: to link to the trait, prefix with `trait@`
194194
|
@@ -256,7 +256,7 @@ error: unresolved link to `Clone`
256256
--> $DIR/weird-syntax.rs:132:9
257257
|
258258
LL | /// The [cln][] link here will produce a plain text suggestion
259-
| ^^^^^ this link resolves to the trait `Clone`, which is not in the value namespace
259+
| ^^^^^ this link resolves to the trait `Clone`, which is not a function
260260
|
261261
= help: to link to the trait, prefix with `trait@`: trait@Clone
262262

0 commit comments

Comments
 (0)