diff options
| author | Raphaël CV <95867256+Raphael-CV@users.noreply.github.com> | 2023-04-05 13:37:54 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-05 13:37:54 +0200 |
| commit | d569f6b33b8cebd6f48ff9935e7c88024bdad72a (patch) | |
| tree | 2da2e0b7063947648ec1282259fb68d38f670534 /library/src/math | |
| parent | df7160f5b2f4e656d8b21dc3aad02106d577c63d (diff) | |
Fix inversion cal frak R (#593)
Diffstat (limited to 'library/src/math')
| -rw-r--r-- | library/src/math/style.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/src/math/style.rs b/library/src/math/style.rs index 7a911a0a..2cd29175 100644 --- a/library/src/math/style.rs +++ b/library/src/math/style.rs @@ -470,11 +470,11 @@ fn latin_exception( ('I', Cal, false, _) => 'ℐ', ('L', Cal, false, _) => 'ℒ', ('M', Cal, false, _) => 'ℳ', - ('R', Cal, false, _) => 'ℜ', + ('R', Cal, false, _) => 'ℛ', ('C', Frak, false, _) => 'ℭ', ('H', Frak, false, _) => 'ℌ', ('I', Frak, false, _) => 'ℑ', - ('R', Frak, false, _) => 'ℛ', + ('R', Frak, false, _) => 'ℜ', ('Z', Frak, false, _) => 'ℨ', ('C', Bb, ..) => 'ℂ', ('H', Bb, ..) => 'ℍ', |
