diff options
| author | Andrew Voynov <37143421+Andrew15-5@users.noreply.github.com> | 2025-03-04 12:33:39 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-04 09:33:39 +0000 |
| commit | 6271cdceae146efe75942ebde7712a942627c42f (patch) | |
| tree | 6d644c72765d976ff8b73c165d6ffa85f2b16604 /crates/typst-library/src | |
| parent | 63fda9935f9da069781d18d5861ee6e50c78ea05 (diff) | |
Fix debug implementation of Recipe (#5997)
Diffstat (limited to 'crates/typst-library/src')
| -rw-r--r-- | crates/typst-library/src/foundations/styles.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crates/typst-library/src/foundations/styles.rs b/crates/typst-library/src/foundations/styles.rs index 98380330..d124f2c8 100644 --- a/crates/typst-library/src/foundations/styles.rs +++ b/crates/typst-library/src/foundations/styles.rs @@ -471,7 +471,8 @@ impl Debug for Recipe { selector.fmt(f)?; f.write_str(", ")?; } - self.transform.fmt(f) + self.transform.fmt(f)?; + f.write_str(")") } } |
