diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2020-08-17 17:22:53 +0200 |
|---|---|---|
| committer | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2020-08-17 17:22:53 +0200 |
| commit | 4fa69cb3ce468c94e8f1c5927212270e9bc74884 (patch) | |
| tree | 60d9a80ba9f0fdf25ff4d14c950c3eb20f9cfba1 /src | |
| parent | cbc13c5eb72ffd470a3e4a59c96c85e004268584 (diff) | |
| download | rust-4fa69cb3ce468c94e8f1c5927212270e9bc74884.tar.gz rust-4fa69cb3ce468c94e8f1c5927212270e9bc74884.zip | |
Improve display
Diffstat (limited to 'src')
| -rw-r--r-- | src/librustc_error_codes/error_codes/E0754.md | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/librustc_error_codes/error_codes/E0754.md b/src/librustc_error_codes/error_codes/E0754.md index 576317e1291..57620bcd65c 100644 --- a/src/librustc_error_codes/error_codes/E0754.md +++ b/src/librustc_error_codes/error_codes/E0754.md @@ -5,18 +5,16 @@ Erroneous code examples: ```compile_fail,E0754 # #![feature(non_ascii_idents)] -mod řųśť; -// ^ error! +mod řųśť; // error! #[no_mangle] -fn řųśť() {} -// ^ error! +fn řųśť() {} // error! fn main() {} ``` -Non-ascii can be used as module names if it is inline or a `#[path]` attribute -is specified. For example: +Non-ascii can be used as module names if it is inlined or if a `#[path]` +attribute is specified. For example: ``` # #![feature(non_ascii_idents)] |
