From 38115599ca9cc9f6426b950d16399f9e03871dd3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kat=20March=C3=A1n?= Date: Fri, 18 Oct 2019 22:41:58 -0400 Subject: [PATCH] fix(fmt): cargo fmt --all --- src/content/write.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/write.rs b/src/content/write.rs index 4ce6324..3a416ca 100644 --- a/src/content/write.rs +++ b/src/content/write.rs @@ -91,7 +91,7 @@ impl AsyncWriter { Ok(AsyncWriter(Mutex::new(State::Idle(Some(Inner { cache: cache_path, builder: IntegrityOpts::new().algorithm(algo), - tmpfile: task::spawn_blocking(|| NamedTempFile::new_in(tmp_path) ).await?, + tmpfile: task::spawn_blocking(|| NamedTempFile::new_in(tmp_path)).await?, buf: vec![], last_op: None, })))))