From 3d0560011d13ff12b629c0a615d6c7f6f544a29f Mon Sep 17 00:00:00 2001 From: Eliza Weisman Date: Tue, 26 Apr 2022 10:06:46 -0700 Subject: [PATCH] rustfmt Signed-off-by: Eliza Weisman --- tokio-util/src/task/join_map.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tokio-util/src/task/join_map.rs b/tokio-util/src/task/join_map.rs index 3e3538ff5b5..41c82f448ab 100644 --- a/tokio-util/src/task/join_map.rs +++ b/tokio-util/src/task/join_map.rs @@ -764,7 +764,9 @@ impl fmt::Debug for JoinMap { struct KeySet<'a, K: fmt::Debug, S>(&'a HashMap, AbortHandle, S>); impl fmt::Debug for KeySet<'_, K, S> { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - f.debug_map().entries(self.0.keys().map(|Key { key, id }| (key, id))).finish() + f.debug_map() + .entries(self.0.keys().map(|Key { key, id }| (key, id))) + .finish() } }