From 3017b82ecc21e529f4f03c0d3a17d2f20249f054 Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Fri, 28 Feb 2025 22:22:27 -0500 Subject: [PATCH] Fix typo in unsatisfiable (#11874) --- crates/uv-pep508/src/marker/algebra.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/uv-pep508/src/marker/algebra.rs b/crates/uv-pep508/src/marker/algebra.rs index 549a68fd2..c9fbd35b9 100644 --- a/crates/uv-pep508/src/marker/algebra.rs +++ b/crates/uv-pep508/src/marker/algebra.rs @@ -470,7 +470,7 @@ impl InternerGuard<'_> { .children .nodes() .all(|y| self.disjointness(y.negate(yi), xi)), - // X and Y represent the same variable, their merged edges must be unsatisifiable. + // X and Y represent the same variable, their merged edges must be unsatisfiable. Ordering::Equal => x.children.is_disjoint(xi, &y.children, yi, self), } } @@ -514,7 +514,7 @@ impl InternerGuard<'_> { .children .nodes() .all(|y| self.disjointness(y.negate(yi), xi)), - // X and Y represent the same variable, their merged edges must be unsatisifiable. + // X and Y represent the same variable, their merged edges must be unsatisfiable. Ordering::Equal => x.children.is_disjoint(xi, &y.children, yi, self), } }