diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2020-02-25 13:28:40 +0100 |
|---|---|---|
| committer | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2020-02-25 13:28:40 +0100 |
| commit | f56042fb3c9821309fc4e8f311a8396bea83d137 (patch) | |
| tree | e215694305f5326c50bc22f763cb5b061b41c2a1 | |
| parent | 01a8b5f26e536a3bcd9449f62fd0b9b68ef3d650 (diff) | |
| download | rust-f56042fb3c9821309fc4e8f311a8396bea83d137.tar.gz rust-f56042fb3c9821309fc4e8f311a8396bea83d137.zip | |
Clean up E0370 explanation
| -rw-r--r-- | src/librustc_error_codes/error_codes/E0370.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/librustc_error_codes/error_codes/E0370.md b/src/librustc_error_codes/error_codes/E0370.md index a3d280fc6dc..14e954722a2 100644 --- a/src/librustc_error_codes/error_codes/E0370.md +++ b/src/librustc_error_codes/error_codes/E0370.md @@ -1,5 +1,7 @@ The maximum value of an enum was reached, so it cannot be automatically -set in the next enum value. Erroneous code example: +set in the next enum value. + +Erroneous code example: ```compile_fail,E0370 #[repr(i64)] |
