@@ -36,7 +36,7 @@ LL | enum Enum<T> { TSVariant(T), SVariant { v: T }, UVariant }
3636 | ^^^^ `Self` corresponds to this type
3737...
3838LL | impl<T> Enum<T> {
39- | --------------- `Self` is or type `Enum` in this `impl`
39+ | --------------- `Self` is on type `Enum` in this `impl`
4040help: the `Self` type doesn't accept type parameters, use the concrete type's name `Enum` instead if you want to specify its type parameters
4141 |
4242LL | Enum::<()>::TSVariant(());
@@ -74,7 +74,7 @@ LL | enum Enum<T> { TSVariant(T), SVariant { v: T }, UVariant }
7474 | ^^^^ `Self` corresponds to this type
7575...
7676LL | impl<T> Enum<T> {
77- | --------------- `Self` is or type `Enum` in this `impl`
77+ | --------------- `Self` is on type `Enum` in this `impl`
7878help: the `Self` type doesn't accept type parameters, use the concrete type's name `Enum` instead if you want to specify its type parameters
7979 |
8080LL | Enum::<()>::TSVariant::<()>(());
@@ -136,7 +136,7 @@ LL | enum Enum<T> { TSVariant(T), SVariant { v: T }, UVariant }
136136 | ^^^^ `Self` corresponds to this type
137137...
138138LL | impl<T> Enum<T> {
139- | --------------- `Self` is or type `Enum` in this `impl`
139+ | --------------- `Self` is on type `Enum` in this `impl`
140140help: the `Self` type doesn't accept type parameters, use the concrete type's name `Enum` instead if you want to specify its type parameters
141141 |
142142LL | Enum::<()>::SVariant { v: () };
@@ -167,7 +167,7 @@ LL | enum Enum<T> { TSVariant(T), SVariant { v: T }, UVariant }
167167 | ^^^^ `Self` corresponds to this type
168168...
169169LL | impl<T> Enum<T> {
170- | --------------- `Self` is or type `Enum` in this `impl`
170+ | --------------- `Self` is on type `Enum` in this `impl`
171171help: the `Self` type doesn't accept type parameters, use the concrete type's name `Enum` instead if you want to specify its type parameters
172172 |
173173LL | Enum::<()>::SVariant::<()> { v: () };
@@ -217,7 +217,7 @@ LL | enum Enum<T> { TSVariant(T), SVariant { v: T }, UVariant }
217217 | ^^^^ `Self` corresponds to this type
218218...
219219LL | impl<T> Enum<T> {
220- | --------------- `Self` is or type `Enum` in this `impl`
220+ | --------------- `Self` is on type `Enum` in this `impl`
221221help: the `Self` type doesn't accept type parameters, use the concrete type's name `Enum` instead if you want to specify its type parameters
222222 |
223223LL | Enum::<()>::UVariant;
@@ -236,7 +236,7 @@ LL | enum Enum<T> { TSVariant(T), SVariant { v: T }, UVariant }
236236 | ^^^^ `Self` corresponds to this type
237237...
238238LL | impl<T> Enum<T> {
239- | --------------- `Self` is or type `Enum` in this `impl`
239+ | --------------- `Self` is on type `Enum` in this `impl`
240240help: the `Self` type doesn't accept type parameters, use the concrete type's name `Enum` instead if you want to specify its type parameters
241241 |
242242LL | Enum::<()>::UVariant::<()>;
0 commit comments