Skip to content

Commit 9402d3d

Browse files
authored
Rollup merge of #102119 - steffahn:fix-pararmeter, r=dtolnay
Fix a typo “pararmeter” in error message Issue reported on IRLO: https://internals.rust-lang.org/t/fixing-a-typo/17427
2 parents 81c0f61 + 0776778 commit 9402d3d

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

compiler/rustc_resolve/src/late/diagnostics.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ impl<'a: 'ast, 'ast> LateResolutionVisitor<'a, '_, 'ast> {
173173
span,
174174
span_label: match res {
175175
Res::Def(kind, def_id) if kind == DefKind::TyParam => {
176-
self.def_span(def_id).map(|span| (span, "found this type pararmeter"))
176+
self.def_span(def_id).map(|span| (span, "found this type parameter"))
177177
}
178178
_ => None,
179179
},

src/test/ui/const-generics/generic_const_exprs/issue-69654.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ error[E0423]: expected value, found type parameter `T`
44
LL | impl<T> Bar<T> for [u8; T] {}
55
| - ^ not a value
66
| |
7-
| found this type pararmeter
7+
| found this type parameter
88

99
error[E0599]: the function or associated item `foo` exists for struct `Foo<_>`, but its trait bounds were not satisfied
1010
--> $DIR/issue-69654.rs:17:10

src/test/ui/lexical-scopes.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ error[E0574]: expected struct, variant or union type, found type parameter `T`
22
--> $DIR/lexical-scopes.rs:3:13
33
|
44
LL | fn f<T>() {
5-
| - found this type pararmeter
5+
| - found this type parameter
66
LL | let t = T { i: 0 };
77
| ^ not a struct, variant or union type
88

src/test/ui/resolve/point-at-type-parameter-shadowing-another-type.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ error[E0574]: expected struct, variant or union type, found type parameter `Baz`
22
--> $DIR/point-at-type-parameter-shadowing-another-type.rs:16:13
33
|
44
LL | impl<Baz> Foo<Baz> for Bar {
5-
| --- found this type pararmeter
5+
| --- found this type parameter
66
...
77
LL | Baz { num } => num,
88
| ^^^ not a struct, variant or union type

src/test/ui/span/issue-35987.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ error[E0404]: expected trait, found type parameter `Add`
44
LL | impl<T: Clone, Add> Add for Foo<T> {
55
| --- ^^^ not a trait
66
| |
7-
| found this type pararmeter
7+
| found this type parameter
88
|
99
help: consider importing this trait instead
1010
|

0 commit comments

Comments
 (0)