diff options
| author | kennytm <kennytm@gmail.com> | 2017-10-12 16:14:31 +0800 |
|---|---|---|
| committer | kennytm <kennytm@gmail.com> | 2017-10-13 01:58:53 +0800 |
| commit | 45e4c19d1f30054b23fe060c662e5e7e38e1bcf9 (patch) | |
| tree | cd82537f9b7a3eb3cd7091d4592a38ecf8442b48 /src/libsyntax | |
| parent | e1a6795188e8d52a8c426bd997bca4a1ae376e74 (diff) | |
| parent | 19901df00282d11e39bdee8d81b773a5826330fb (diff) | |
| download | rust-45e4c19d1f30054b23fe060c662e5e7e38e1bcf9.tar.gz rust-45e4c19d1f30054b23fe060c662e5e7e38e1bcf9.zip | |
Rollup merge of #45231 - kennytm:patch-1, r=petrochenkov
Fix typo in libsyntax/parse/lexer/unicode_chars.rs `` ` `` (U+0060) should be the "grave" accent, not "Greek" accent.
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/parse/lexer/unicode_chars.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/lexer/unicode_chars.rs b/src/libsyntax/parse/lexer/unicode_chars.rs index 39b5482a066..35afe8dd56d 100644 --- a/src/libsyntax/parse/lexer/unicode_chars.rs +++ b/src/libsyntax/parse/lexer/unicode_chars.rs @@ -144,7 +144,7 @@ const UNICODE_ARRAY: &'static [(char, &'static str, char)] = &[ ('‵', "Reversed Prime", '\''), ('՚', "Armenian Apostrophe", '\''), ('׳', "Hebrew Punctuation Geresh", '\''), - ('`', "Greek Accent", '\''), + ('`', "Grave Accent", '\''), ('`', "Greek Varia", '\''), ('`', "Fullwidth Grave Accent", '\''), ('´', "Acute Accent", '\''), |
