From 8c5fa5bc92f327dab9f80e0d9295729f51ab3a30 Mon Sep 17 00:00:00 2001 From: Daniel Burgener Date: Wed, 11 Dec 2024 16:22:34 -0500 Subject: [PATCH] Run cargo fmt on codebase Only touches src/unify/mod.rs --- src/unify/mod.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/unify/mod.rs b/src/unify/mod.rs index 41c9d46..51fc4c5 100644 --- a/src/unify/mod.rs +++ b/src/unify/mod.rs @@ -455,9 +455,9 @@ where /// Obtains current value for key without any pointer chasing; may return `None` if key has been union'd. #[inline] pub fn try_probe_value<'a, K1>(&'a self, id: K1) -> Option<&'a V> - where - K1: Into, - K: 'a, + where + K1: Into, + K: 'a, { let id = id.into(); let v = self.value(id);