Skip to content

Commit

Permalink
Rollup merge of #69887 - GuillaumeGomez:cleanup-e0404, r=Dylan-DPC
Browse files Browse the repository at this point in the history
clean up E0404 explanation

r? @Dylan-DPC
  • Loading branch information
Dylan-DPC authored Mar 27, 2020
2 parents 87fdf35 + 88100ba commit 6b6c470
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/librustc_error_codes/error_codes/E0404.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
You tried to use something which is not a trait in a trait position, such as
a bound or `impl`.
A type that is not a trait was used in a trait position, such as a bound
or `impl`.

Erroneous code example:

Expand All @@ -18,8 +18,8 @@ struct Foo;
fn bar<T: Foo>(t: T) {} // error: `Foo` is not a trait
```

Please verify that you didn't misspell the trait's name or otherwise use the
wrong identifier. Example:
Please verify that the trait's name was not misspelled or that the right
identifier was used. Example:

```
trait Foo {
Expand All @@ -32,7 +32,7 @@ impl Foo for Bar { // ok!
}
```

or
or:

```
trait Foo {
Expand Down

0 comments on commit 6b6c470

Please sign in to comment.