Fix a formatting bug

This commit is contained in:
Michael Pfaff 2023-07-03 18:54:46 -04:00
parent c78b223c67
commit 8517408765
Signed by: michael
GPG Key ID: CF402C4A012AA9D4
1 changed files with 1 additions and 1 deletions

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