From 5d72d966adc2ab6958a7a1afd9896c062c4266a8 Mon Sep 17 00:00:00 2001 From: Corey Farwell Date: Mon, 17 Apr 2017 21:56:01 -0400 Subject: [PATCH] Wrap long line. --- src/book/mod.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/book/mod.rs b/src/book/mod.rs index e4622be7..a040fe19 100644 --- a/src/book/mod.rs +++ b/src/book/mod.rs @@ -190,7 +190,9 @@ impl MDBook { if !path.exists() { if !self.create_missing { - return Err(format!("'{}' referenced from SUMMARY.md does not exist.", path.to_string_lossy()).into()); + return Err(format!( + "'{}' referenced from SUMMARY.md does not exist.", + path.to_string_lossy()).into()); } debug!("[*]: {:?} does not exist, trying to create file", path); try!(::std::fs::create_dir_all(path.parent().unwrap()));