Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Typo in E0751 #133985

Closed
ionicmc-rs opened this issue Dec 6, 2024 · 3 comments · Fixed by #133993
Closed

Typo in E0751 #133985

ionicmc-rs opened this issue Dec 6, 2024 · 3 comments · Fixed by #133993
Labels
A-diagnostics Area: Messages for errors, warnings, and lints C-bug Category: This is a bug. E-easy Call for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.

Comments

@ionicmc-rs
Copy link
Contributor

ionicmc-rs commented Dec 6, 2024

here is E0571

There are both a positive and negative trait implementation for the same type.

Erroneous code example:

trait MyTrait {}
impl MyTrait for i32 { }
impl !MyTrait for i32 { } // error!

Negative implementations are a promise that the trait will never be implemented for the given types. Therefore, both cannot
exists at the same time.
^^^^^^
`exist`

there is probably some better template to use here

@rustbot rustbot added the needs-triage This issue may need triage. Remove it if it has been sufficiently triaged. label Dec 6, 2024
@saethlin saethlin added E-easy Call for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue. A-diagnostics Area: Messages for errors, warnings, and lints T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. C-bug Category: This is a bug. and removed needs-triage This issue may need triage. Remove it if it has been sufficiently triaged. labels Dec 6, 2024
@saethlin
Copy link
Member

saethlin commented Dec 6, 2024

there is probably some better template to use here

Nah. You've clearly communicated the problem in a way that a human can digest. That's all we need.

@ionicmc-rs
Copy link
Contributor Author

ionicmc-rs commented Dec 6, 2024

Nah. You've clearly communicated the problem in a way that a human can digest. That's all we need.

Well I mean it's basically just a correction, should be pretty easy to fix

@LuanOldCode
Copy link
Contributor

Hi! I've already fixed the typo in the error message for E0751. The message originally said "exists" and I corrected it to "exist" to ensure proper grammar.
I’ve already pushed the changes to my fork, and the PR is ready for review.

Link: 133993

@saethlin saethlin linked a pull request Dec 7, 2024 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-diagnostics Area: Messages for errors, warnings, and lints C-bug Category: This is a bug. E-easy Call for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants