chore(fmt): apply proper formatting

This commit is contained in:
Erica Marigold 2024-04-17 12:12:30 +05:30
parent 88ff7158f0
commit bdb14f48f9
No known key found for this signature in database
GPG key ID: 2768CC0C23D245D1

View file

@ -148,7 +148,12 @@ pub fn pretty_format_value(
)?,
_ => {
write!(buffer, "\n{depth_indent}{INDENT}[")?;
pretty_format_value(buffer, &key, parent_table_addr.clone(), depth + 1)?;
pretty_format_value(
buffer,
&key,
parent_table_addr.clone(),
depth + 1,
)?;
write!(buffer, "] {} ", STYLE_DIM.apply_to("="))?;
}
}