diff options
| author | Malo <57839069+MDLC01@users.noreply.github.com> | 2024-09-27 15:10:34 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-27 13:10:34 +0000 |
| commit | 53135a0813c709a6e2762d806e991a6441dc27de (patch) | |
| tree | 5564a36a084eaf1bc5c0489221bceec0a2e6de1d | |
| parent | 2a1fbd41010eaaf62d7266a583da95c5e3f6c6ed (diff) | |
Implement symbol Proposal 21 (iteration 1) (#5053)
| -rw-r--r-- | crates/typst/src/symbols/sym.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/crates/typst/src/symbols/sym.rs b/crates/typst/src/symbols/sym.rs index 1d78ee3f..1cdd92d8 100644 --- a/crates/typst/src/symbols/sym.rs +++ b/crates/typst/src/symbols/sym.rs @@ -341,18 +341,18 @@ pub(crate) const SYM: &[(&str, Symbol)] = symbols! { // Set theory. emptyset: [ '∅', + arrow.r: '⦳', + arror.l: '⦴', bar: '⦱', circle: '⦲', - larrow: '⦴', - rarrow: '⦳', rev: '⦰', ], nothing: [ '∅', + arrow.r: '⦳', + arror.l: '⦴', bar: '⦱', circle: '⦲', - larrow: '⦴', - rarrow: '⦳', rev: '⦰', ], without: '∖', |
