diff options
Diffstat (limited to 'library/src/math')
| -rw-r--r-- | library/src/math/style.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/src/math/style.rs b/library/src/math/style.rs index c45a8d93..633a66bf 100644 --- a/library/src/math/style.rs +++ b/library/src/math/style.rs @@ -439,7 +439,7 @@ pub(super) fn styled_char(style: MathStyle, c: char) -> char { let (base, default_italic) = match c { 'a'..='z' => ('a', true), 'A'..='Z' => ('A', true), - 'α'..='ω' => ('α', false), + 'α'..='ω' => ('α', true), 'Α'..='Ω' => ('Α', false), '0'..='9' => ('0', false), '-' => return '−', |
