Fix debug implementation of Recipe (#5997)

This commit is contained in:
Andrew Voynov 2025-03-04 12:33:39 +03:00 committed by GitHub
parent 63fda9935f
commit 6271cdceae
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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(")")
}
}