Skip to content

Commit 55a7f9f

Browse files
committed
revision -> iteration for added_goals_evaluation
1 parent 27e4877 commit 55a7f9f

File tree

1 file changed

+3
-3
lines changed
  • compiler/rustc_middle/src/traits/solve/inspect

1 file changed

+3
-3
lines changed

compiler/rustc_middle/src/traits/solve/inspect/format.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -133,10 +133,10 @@ impl<'a, 'b> ProofTreeFormatter<'a, 'b> {
133133
) -> std::fmt::Result {
134134
writeln!(self.f, "TRY_EVALUATE_ADDED_GOALS: {:?}", added_goals_evaluation.result)?;
135135

136-
for (n, revision) in added_goals_evaluation.evaluations.iter().enumerate() {
137-
writeln!(self.f, "REVISION {n}")?;
136+
for (n, iterations) in added_goals_evaluation.evaluations.iter().enumerate() {
137+
writeln!(self.f, "ITERATION {n}")?;
138138
self.nested(|this| {
139-
for goal_evaluation in revision {
139+
for goal_evaluation in iterations {
140140
this.format_goal_evaluation(goal_evaluation)?;
141141
}
142142
Ok(())

0 commit comments

Comments
 (0)