about summary refs log tree commit diff
path: root/src/libsyntax/parse
diff options
context:
space:
mode:
authorkennytm <kennytm@gmail.com>2017-10-12 16:14:31 +0800
committerkennytm <kennytm@gmail.com>2017-10-13 01:58:53 +0800
commit45e4c19d1f30054b23fe060c662e5e7e38e1bcf9 (patch)
treecd82537f9b7a3eb3cd7091d4592a38ecf8442b48 /src/libsyntax/parse
parente1a6795188e8d52a8c426bd997bca4a1ae376e74 (diff)
parent19901df00282d11e39bdee8d81b773a5826330fb (diff)
downloadrust-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/parse')
-rw-r--r--src/libsyntax/parse/lexer/unicode_chars.rs2
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", '\''),