correct aliases for square brackets
This commit is contained in:
parent
5f70e8f6cd
commit
47d5c90fbe
1 changed files with 8 additions and 6 deletions
|
|
@ -132,18 +132,18 @@ const UNICODE_ARRAY: &'static [(char, &'static str, char)] = &[
|
|||
('ײ', "Hebrew Ligature Yiddish Double Yod", '"'),
|
||||
('❞', "Heavy Double Comma Quotation Mark Ornament", '"'),
|
||||
('❝', "Heavy Double Turned Comma Quotation Mark Ornament", '"'),
|
||||
('[', "Fullwidth Left Square Bracket", '('),
|
||||
('❨', "Medium Left Parenthesis Ornament", '('),
|
||||
('❲', "Light Left Tortoise Shell Bracket Ornament", '('),
|
||||
('〔', "Left Tortoise Shell Bracket", '('),
|
||||
('﴾', "Ornate Left Parenthesis", '('),
|
||||
('(', "Fullwidth Left Parenthesis", '('),
|
||||
(']', "Fullwidth Right Square Bracket", ')'),
|
||||
('❩', "Medium Right Parenthesis Ornament", ')'),
|
||||
('❳', "Light Right Tortoise Shell Bracket Ornament", ')'),
|
||||
('〕', "Right Tortoise Shell Bracket", ')'),
|
||||
('﴿', "Ornate Right Parenthesis", ')'),
|
||||
(')', "Fullwidth Right Parenthesis", ')'),
|
||||
('[', "Fullwidth Left Square Bracket", '['),
|
||||
('❲', "Light Left Tortoise Shell Bracket Ornament", '['),
|
||||
('〔', "Left Tortoise Shell Bracket", '['),
|
||||
(']', "Fullwidth Right Square Bracket", ']'),
|
||||
('❳', "Light Right Tortoise Shell Bracket Ornament", ']'),
|
||||
('〕', "Right Tortoise Shell Bracket", ']'),
|
||||
('❴', "Medium Left Curly Bracket Ornament", '{'),
|
||||
('❵', "Medium Right Curly Bracket Ornament", '}'),
|
||||
('⁎', "Low Asterisk", '*'),
|
||||
|
|
@ -202,6 +202,8 @@ const ASCII_ARRAY: &'static [(char, &'static str)] = &[
|
|||
('"', "Quotation Mark"),
|
||||
('(', "Left Parenthesis"),
|
||||
(')', "Right Parenthesis"),
|
||||
('[', "Left Square Bracket"),
|
||||
(']', "Right Square Bracket"),
|
||||
('{', "Left Curly Brace"),
|
||||
('}', "Right Curly Brace"),
|
||||
('*', "Asterisk"),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue