This repository was archived by the owner on Sep 9, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -763,16 +763,16 @@ impl<H: Clone> ForwardPartialPathStitcher<H> {
763
763
. is_cyclic ( graph, partials, db, & mut self . appended_paths )
764
764
. expect ( "cyclic test failed when stitching partial paths" ) ;
765
765
let cyclic = match has_precondition_variables {
766
- // If the precondition has no variables, we allow cycles that strenghten the
767
- // precondition, because we know they cannot strenghten the precondition of
766
+ // If the precondition has no variables, we allow cycles that strengthen the
767
+ // precondition, because we know they cannot strengthen the precondition of
768
768
// the overall path.
769
769
false => !cycles
770
770
. into_iter ( )
771
771
. all ( |c| c == Cyclicity :: StrengthensPrecondition ) ,
772
772
// If the precondition has variables, do not allow any cycles, not even those
773
773
// that strengthen the precondition. This is more strict than necessary. Better
774
- // might be to disallow precondition strenghtening cycles only if they would
775
- // strenghten the overall path precondition.
774
+ // might be to disallow precondition strengthening cycles only if they would
775
+ // strengthen the overall path precondition.
776
776
true => !cycles. is_empty ( ) ,
777
777
} ;
778
778
if cyclic {
You can’t perform that action at this time.
0 commit comments