diff options
Diffstat (limited to 'crates')
| -rw-r--r-- | crates/typst/src/eval/math.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/typst/src/eval/math.rs b/crates/typst/src/eval/math.rs index 62314fc2..0e5e0eef 100644 --- a/crates/typst/src/eval/math.rs +++ b/crates/typst/src/eval/math.rs @@ -55,7 +55,7 @@ impl Eval for ast::MathAttach<'_> { if let Some(expr) = self.top() { elem.push_t(Some(expr.eval_display(vm)?)); } else if let Some(primes) = self.primes() { - elem.push_t(Some(primes.eval(vm)?)); + elem.push_tr(Some(primes.eval(vm)?)); } if let Some(expr) = self.bottom() { |
