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);