@@ -27,7 +27,7 @@ note: enum defined here, with 0 lifetime parameters
27
27
|
28
28
LL | enum Bar {
29
29
| ^^^
30
- help: remove these generics
30
+ help: remove the unnecessary generics
31
31
|
32
32
LL - bar: Bar<'a>,
33
33
LL + bar: Bar,
@@ -44,7 +44,7 @@ note: struct defined here, with 1 lifetime parameter: `'a`
44
44
|
45
45
LL | struct Foo<'a>(&'a str);
46
46
| ^^^ --
47
- help: remove these lifetime arguments
47
+ help: remove the lifetime arguments
48
48
|
49
49
LL - foo2: Foo<'a, 'b, 'c>,
50
50
LL + foo2: Foo<'a, >,
@@ -61,7 +61,7 @@ note: struct defined here, with 1 lifetime parameter: `'a`
61
61
|
62
62
LL | struct Qux<'a, T>(&'a T);
63
63
| ^^^ --
64
- help: remove this lifetime argument
64
+ help: remove the lifetime argument
65
65
|
66
66
LL - qux1: Qux<'a, 'b, i32>,
67
67
LL + qux1: Qux<'a, , i32>,
@@ -78,7 +78,7 @@ note: struct defined here, with 1 lifetime parameter: `'a`
78
78
|
79
79
LL | struct Qux<'a, T>(&'a T);
80
80
| ^^^ --
81
- help: remove this lifetime argument
81
+ help: remove the lifetime argument
82
82
|
83
83
LL - qux2: Qux<'a, i32, 'b>,
84
84
LL + qux2: Qux<'a, i32, >,
@@ -95,7 +95,7 @@ note: struct defined here, with 1 lifetime parameter: `'a`
95
95
|
96
96
LL | struct Qux<'a, T>(&'a T);
97
97
| ^^^ --
98
- help: remove these lifetime arguments
98
+ help: remove the lifetime arguments
99
99
|
100
100
LL - qux3: Qux<'a, 'b, 'c, i32>,
101
101
LL + qux3: Qux<'a, , i32>,
@@ -112,7 +112,7 @@ note: struct defined here, with 1 lifetime parameter: `'a`
112
112
|
113
113
LL | struct Qux<'a, T>(&'a T);
114
114
| ^^^ --
115
- help: remove these lifetime arguments
115
+ help: remove the lifetime arguments
116
116
|
117
117
LL - qux4: Qux<'a, i32, 'b, 'c>,
118
118
LL + qux4: Qux<'a, i32, >,
@@ -129,7 +129,7 @@ note: struct defined here, with 1 lifetime parameter: `'a`
129
129
|
130
130
LL | struct Qux<'a, T>(&'a T);
131
131
| ^^^ --
132
- help: remove this lifetime argument
132
+ help: remove the lifetime argument
133
133
|
134
134
LL - qux5: Qux<'a, 'b, i32, 'c>,
135
135
LL + qux5: Qux<'a, , i32, 'c>,
@@ -146,7 +146,7 @@ note: struct defined here, with 0 lifetime parameters
146
146
|
147
147
LL | struct Quux<T>(T);
148
148
| ^^^^
149
- help: remove this lifetime argument
149
+ help: remove the lifetime argument
150
150
|
151
151
LL - quux: Quux<'a, i32, 'b>,
152
152
LL + quux: Quux<, i32, 'b>,
0 commit comments