mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
fix(prettier) remove unmatched brace when displaying doc (#1564)
This commit is contained in:
parent
83f25fc9b3
commit
2bfd28e6f5
1 changed files with 1 additions and 1 deletions
|
|
@ -193,7 +193,7 @@ pub trait DocBuilder<'a> {
|
|||
|
||||
impl<'a> fmt::Display for Doc<'a> {
|
||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||
write!(f, "{})", print_doc_to_debug(self))
|
||||
write!(f, "{}", print_doc_to_debug(self))
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue