refactor: quoted-tick -> quoted-backtick

This commit is contained in:
graelo 2021-10-26 09:25:29 +02:00
parent a5140322ff
commit 389e9617a9
5 changed files with 16 additions and 15 deletions

View file

@ -42,7 +42,7 @@ pub(super) const PATTERNS: [(&str, &str); 20] = [
),
("quoted-single", r#"'([^']+)'"#),
("quoted-double", r#""([^"]+)""#),
("quoted-tick", r#"`([^`]+)`"#),
("quoted-backtick", r#"`([^`]+)`"#),
("digits", r"([0-9]{4,})"),
];