diff options
| author | kennytm <kennytm@gmail.com> | 2017-10-12 14:53:26 +0800 |
|---|---|---|
| committer | kennytm <kennytm@gmail.com> | 2017-10-13 01:58:51 +0800 |
| commit | 19901df00282d11e39bdee8d81b773a5826330fb (patch) | |
| tree | dbe67b7414ce7f7b5fc61b92bd8e6541c9ef5939 /src/libsyntax/parse | |
| parent | 1807f27a338e8e3f8c3a9c99fde2223b5942e640 (diff) | |
| download | rust-19901df00282d11e39bdee8d81b773a5826330fb.tar.gz rust-19901df00282d11e39bdee8d81b773a5826330fb.zip | |
Fix typo in libsyntax/parse/lexer/unicode_chars.rs
` (U+0060) should be the "grave" accent, not "Greek" accent.
Diffstat (limited to 'src/libsyntax/parse')
| -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", '\''), |
