summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Voynov <37143421+Andrew15-5@users.noreply.github.com>2025-03-04 12:33:39 +0300
committerGitHub <noreply@github.com>2025-03-04 09:33:39 +0000
commit6271cdceae146efe75942ebde7712a942627c42f (patch)
tree6d644c72765d976ff8b73c165d6ffa85f2b16604
parent63fda9935f9da069781d18d5861ee6e50c78ea05 (diff)
Fix debug implementation of Recipe (#5997)
-rw-r--r--crates/typst-library/src/foundations/styles.rs3
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(")")
}
}