Fix a formatting bug

This commit is contained in:
Michael Pfaff 2023-07-03 18:54:46 -04:00
commit 8517408765
No known key found for this signature in database
GPG key ID: CF402C4A012AA9D4

View file

@ -145,7 +145,7 @@ impl std::fmt::Display for How {
if i != 0 {
f.write_str("\n")?;
}
report_write!(f, &opts.indent(), "- {ctx}")?;
report_write!(f, &opts.indent().next(), "{ctx}")?;
}
Ok(())
}