Skip to content

Commit

Permalink
rustfmt
Browse files Browse the repository at this point in the history
Signed-off-by: Eliza Weisman <eliza@buoyant.io>
  • Loading branch information
hawkw committed Apr 26, 2022
1 parent f0adddb commit 3d05600
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tokio-util/src/task/join_map.rs
Expand Up @@ -764,7 +764,9 @@ impl<K: fmt::Debug, V, S> fmt::Debug for JoinMap<K, V, S> {
struct KeySet<'a, K: fmt::Debug, S>(&'a HashMap<Key<K>, AbortHandle, S>);
impl<K: fmt::Debug, S> 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()
}
}

Expand Down

0 comments on commit 3d05600

Please sign in to comment.