@@ -1052,7 +1052,7 @@ impl ScheduleGraph {
10521052
10531053 Ok ( keys. len ( ) )
10541054 }
1055- ScheduleCleanupPolicy :: RemoveOnlySystems => {
1055+ ScheduleCleanupPolicy :: RemoveSystemsOnly => {
10561056 for & key in & keys {
10571057 self . add_edges_for_transitive_dependencies ( key. into ( ) ) ;
10581058 }
@@ -1626,14 +1626,14 @@ pub enum ReportCycles {
16261626pub enum ScheduleCleanupPolicy {
16271627 /// Remove the referenced set and any systems in the set.
16281628 /// Attempts to maintain the order between the transitive dependencies by adding new edges
1629- /// between the existing before and after dependendencies on the set and the systems.
1629+ /// between the existing before and after dependencies on the set and the systems.
16301630 /// This does not remove sets that might sub sets of the set.
16311631 #[ default]
16321632 RemoveSetAndSystems ,
16331633 /// Remove only the systems in the set. The set
16341634 /// Attempts to maintain the order between the transitive dependencies by adding new edges
1635- /// between the existing before and after dependendencies on the systems.
1636- RemoveOnlySystems ,
1635+ /// between the existing before and after dependencies on the systems.
1636+ RemoveSystemsOnly ,
16371637 /// Remove the set and any systems in the set.
16381638 /// Note that this will not add new edges and
16391639 /// so will break any transitive dependencies on that set or systems.
@@ -1642,7 +1642,7 @@ pub enum ScheduleCleanupPolicy {
16421642 /// Remove only the systems in the set.
16431643 /// Note that this will not add new edges and
16441644 /// so will break any transitive dependencies on that set or systems.
1645- RemoveOnlySystemsAllowBreakages ,
1645+ RemoveSystemsOnlyAllowBreakages ,
16461646}
16471647
16481648// methods for reporting errors
0 commit comments