Skip to content

Commit b19e84e

Browse files
committed
Tweak wording
1 parent 0608151 commit b19e84e

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

compiler/rustc_hir_analysis/src/astconv/errors.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -191,10 +191,11 @@ impl<'o, 'tcx> dyn AstConv<'tcx> + 'o {
191191
.collect::<Vec<_>>()[..]
192192
{
193193
let trait_name = self.tcx().def_path_str(*best_trait);
194+
let an = if suggested_name != assoc_name.name { "a similarly named" } else { "an" };
194195
err.span_label(
195196
assoc_name.span,
196197
format!(
197-
"there is a similarly named associated type `{suggested_name}` in the \
198+
"there is {an} associated type `{suggested_name}` in the \
198199
trait `{trait_name}`",
199200
),
200201
);

tests/rustdoc-ui/issues/issue-96287.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ error[E0220]: associated type `Assoc` not found for `V`
22
--> $DIR/issue-96287.rs:7:33
33
|
44
LL | pub type Foo<V> = impl Trait<V::Assoc>;
5-
| ^^^^^ there is a similarly named associated type `Assoc` in the trait `TraitWithAssoc`
5+
| ^^^^^ there is an associated type `Assoc` in the trait `TraitWithAssoc`
66
|
77
help: consider restricting type parameter `V`
88
|

tests/ui/traits/issue-59029-1.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ error[E0220]: associated type `Res` not found for `Self`
22
--> $DIR/issue-59029-1.rs:5:52
33
|
44
LL | trait MkSvc<Target, Req> = Svc<Target> where Self::Res: Svc<Req>;
5-
| ^^^ there is a similarly named associated type `Res` in the trait `Svc`
5+
| ^^^ there is an associated type `Res` in the trait `Svc`
66

77
error[E0220]: associated type `Res` not found for `Self`
88
--> $DIR/issue-59029-1.rs:5:52
99
|
1010
LL | trait MkSvc<Target, Req> = Svc<Target> where Self::Res: Svc<Req>;
11-
| ^^^ there is a similarly named associated type `Res` in the trait `Svc`
11+
| ^^^ there is an associated type `Res` in the trait `Svc`
1212

1313
error: aborting due to 2 previous errors
1414

tests/ui/type-alias-impl-trait/not_well_formed.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ error[E0220]: associated type `Assoc` not found for `V`
22
--> $DIR/not_well_formed.rs:11:29
33
|
44
LL | type Foo<V> = impl Trait<V::Assoc>;
5-
| ^^^^^ there is a similarly named associated type `Assoc` in the trait `TraitWithAssoc`
5+
| ^^^^^ there is an associated type `Assoc` in the trait `TraitWithAssoc`
66
|
77
help: consider restricting type parameter `V`
88
|

0 commit comments

Comments
 (0)