mirror of
https://github.com/astral-sh/uv.git
synced 2025-08-04 19:08:04 +00:00
Fix typo in unsatisfiable (#11874)
This commit is contained in:
parent
7acdbf6414
commit
3017b82ecc
1 changed files with 2 additions and 2 deletions
|
@ -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),
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue