From ef993e8cc2486fa8b3d14fd089c6aafbf0a3be14 Mon Sep 17 00:00:00 2001 From: apatniv Date: Sat, 5 Dec 2020 20:27:03 -0500 Subject: Run rust formmater --- src/book/book.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/book') diff --git a/src/book/book.rs b/src/book/book.rs index 07996cad..994238bd 100644 --- a/src/book/book.rs +++ b/src/book/book.rs @@ -49,7 +49,9 @@ fn create_missing(src_dir: &Path, summary: &Summary) -> Result<()> { } debug!("Creating missing file {}", filename.display()); - let mut f = File::create(&filename).with_context(|| format!("Unable to create missing file: {}", filename.display()))?; + let mut f = File::create(&filename).with_context(|| { + format!("Unable to create missing file: {}", filename.display()) + })?; writeln!(f, "# {}", link.name)?; } } -- cgit v1.2.3