From 370aa5929fc78a6b5300547b2f0f3f9e0cca96e3 Mon Sep 17 00:00:00 2001 From: Ian Wrzesinski <133046678+wrzian@users.noreply.github.com> Date: Fri, 20 Dec 2024 05:00:09 -0500 Subject: [PATCH] Remove unused single quote shorthand (#5609) --- crates/typst-syntax/src/ast.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/typst-syntax/src/ast.rs b/crates/typst-syntax/src/ast.rs index 45d995a92..19e123727 100644 --- a/crates/typst-syntax/src/ast.rs +++ b/crates/typst-syntax/src/ast.rs @@ -743,7 +743,6 @@ impl MathShorthand<'_> { pub const LIST: &'static [(&'static str, char)] = &[ ("...", '…'), ("-", '−'), - ("'", '′'), ("*", '∗'), ("~", '∼'), ("!=", '≠'),