diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2019-11-25 13:32:11 +0100 |
|---|---|---|
| committer | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2019-11-25 13:32:11 +0100 |
| commit | 7e813c4a014de141a09b4e8b74532b2896b2766a (patch) | |
| tree | 370f8300308d5fc2aabb57f98c3919c898b3d326 | |
| parent | bf5c64abff4994c2743b675d1d39c57571155a53 (diff) | |
| download | rust-7e813c4a014de141a09b4e8b74532b2896b2766a.tar.gz rust-7e813c4a014de141a09b4e8b74532b2896b2766a.zip | |
Clean up E0063 long explanation
| -rw-r--r-- | src/librustc_error_codes/error_codes/E0063.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/librustc_error_codes/error_codes/E0063.md b/src/librustc_error_codes/error_codes/E0063.md index 0d1f60437ac..0e611deac42 100644 --- a/src/librustc_error_codes/error_codes/E0063.md +++ b/src/librustc_error_codes/error_codes/E0063.md @@ -1,5 +1,6 @@ -This error indicates that during an attempt to build a struct or struct-like -enum variant, one of the fields was not provided. Erroneous code example: +A struct's or struct-like enum variant's field was not provided. + +Erroneous code example: ```compile_fail,E0063 struct Foo { |
