Rollup merge of #126809 - estebank:wording-tweak, r=oli-obk

Remove stray `.` from error message
This commit is contained in:
Jubilee 2024-06-21 21:02:28 -07:00 committed by GitHub
commit 539090e5cd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 7 additions and 7 deletions

View File

@ -194,7 +194,7 @@ hir_analysis_inherent_ty_outside = cannot define inherent `impl` for a type outs
.span_help = alternatively add `#[rustc_has_incoherent_inherent_impls]` to the type and `#[rustc_allow_incoherent_impl]` to the relevant impl items .span_help = alternatively add `#[rustc_has_incoherent_inherent_impls]` to the type and `#[rustc_allow_incoherent_impl]` to the relevant impl items
hir_analysis_inherent_ty_outside_new = cannot define inherent `impl` for a type outside of the crate where the type is defined hir_analysis_inherent_ty_outside_new = cannot define inherent `impl` for a type outside of the crate where the type is defined
.label = impl for type defined outside of crate. .label = impl for type defined outside of crate
.note = define and implement a trait or new type instead .note = define and implement a trait or new type instead
hir_analysis_inherent_ty_outside_primitive = cannot define inherent `impl` for primitive types outside of `core` hir_analysis_inherent_ty_outside_primitive = cannot define inherent `impl` for primitive types outside of `core`

View File

@ -2,7 +2,7 @@ error[E0116]: cannot define inherent `impl` for a type outside of the crate wher
--> $DIR/E0116.rs:1:1 --> $DIR/E0116.rs:1:1
| |
LL | impl Vec<u8> {} LL | impl Vec<u8> {}
| ^^^^^^^^^^^^ impl for type defined outside of crate. | ^^^^^^^^^^^^ impl for type defined outside of crate
| |
= note: define and implement a trait or new type instead = note: define and implement a trait or new type instead

View File

@ -2,7 +2,7 @@ error[E0116]: cannot define inherent `impl` for a type outside of the crate wher
--> $DIR/no-attr-empty-impl.rs:4:1 --> $DIR/no-attr-empty-impl.rs:4:1
| |
LL | impl extern_crate::StructWithAttr {} LL | impl extern_crate::StructWithAttr {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl for type defined outside of crate. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl for type defined outside of crate
| |
= note: define and implement a trait or new type instead = note: define and implement a trait or new type instead
@ -10,7 +10,7 @@ error[E0116]: cannot define inherent `impl` for a type outside of the crate wher
--> $DIR/no-attr-empty-impl.rs:7:1 --> $DIR/no-attr-empty-impl.rs:7:1
| |
LL | impl extern_crate::StructNoAttr {} LL | impl extern_crate::StructNoAttr {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl for type defined outside of crate. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl for type defined outside of crate
| |
= note: define and implement a trait or new type instead = note: define and implement a trait or new type instead
@ -18,7 +18,7 @@ error[E0116]: cannot define inherent `impl` for a type outside of the crate wher
--> $DIR/no-attr-empty-impl.rs:10:1 --> $DIR/no-attr-empty-impl.rs:10:1
| |
LL | impl extern_crate::EnumWithAttr {} LL | impl extern_crate::EnumWithAttr {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl for type defined outside of crate. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl for type defined outside of crate
| |
= note: define and implement a trait or new type instead = note: define and implement a trait or new type instead
@ -26,7 +26,7 @@ error[E0116]: cannot define inherent `impl` for a type outside of the crate wher
--> $DIR/no-attr-empty-impl.rs:13:1 --> $DIR/no-attr-empty-impl.rs:13:1
| |
LL | impl extern_crate::EnumNoAttr {} LL | impl extern_crate::EnumNoAttr {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl for type defined outside of crate. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl for type defined outside of crate
| |
= note: define and implement a trait or new type instead = note: define and implement a trait or new type instead

View File

@ -2,7 +2,7 @@ error[E0116]: cannot define inherent `impl` for a type outside of the crate wher
--> $DIR/trait-or-new-type-instead.rs:1:1 --> $DIR/trait-or-new-type-instead.rs:1:1
| |
LL | impl<T> Option<T> { LL | impl<T> Option<T> {
| ^^^^^^^^^^^^^^^^^ impl for type defined outside of crate. | ^^^^^^^^^^^^^^^^^ impl for type defined outside of crate
| |
= note: define and implement a trait or new type instead = note: define and implement a trait or new type instead