Rollup merge of #69947 - GuillaumeGomez:cleanup-e0423, r=Dylan-DPC

Clean up E0423 explanation

r? @Dylan-DPC
This commit is contained in:
Yuki Okushi 2020-03-14 04:03:28 +09:00 committed by GitHub
commit 78d722f0c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,8 +1,7 @@
An identifier was used like a function name or a value was expected and the
identifier exists but it belongs to a different namespace.
For (an erroneous) example, here a `struct` variant name were used as a
function:
Erroneous code example:
```compile_fail,E0423
struct Foo { a: bool };