automatic cargo CI changes

This commit is contained in:
cscherrNT 2024-06-27 11:43:48 +00:00 committed by github-actions[bot]
parent a4814d43e0
commit 6e047bdffd
1 changed files with 5 additions and 1 deletions

View File

@ -52,7 +52,11 @@ impl Post {
impl Display for Post {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
writeln!(f, "\n{:<60} | published: {:<5}\n{:=^140}\n\n{}", self.title, self.published, "", self.body)
writeln!(
f,
"\n{:<60} | published: {:<5}\n{:=^140}\n\n{}",
self.title, self.published, "", self.body
)
}
}