Clean up E0323, E0324 and E0325 explanations

This commit is contained in:
Guillaume Gomez 2020-02-21 13:31:21 +01:00
parent dbef35309d
commit c3303c7b08
3 changed files with 5 additions and 2 deletions

View File

@ -1,4 +1,5 @@
An associated const was implemented when another trait item was expected.
Erroneous code example:
```compile_fail,E0323

View File

@ -1,5 +1,6 @@
A method was implemented when another trait item was expected. Erroneous
code example:
A method was implemented when another trait item was expected.
Erroneous code example:
```compile_fail,E0324
struct Bar;

View File

@ -1,4 +1,5 @@
An associated type was implemented when another trait item was expected.
Erroneous code example:
```compile_fail,E0325