Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ekiwi committed Apr 16, 2024
1 parent d46c449 commit 283a5a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions synth/src/windowing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -212,15 +212,15 @@ where
correct_repair_tries: None,
correct_repair_ns: None,
};
Ok((stats, make_result(None, &window)));
Ok((stats, make_result(None, &window)))
} else {
// no repair found
let stats = Stats {
minimal_repair_candidate_ns: None,
correct_repair_tries: None,
correct_repair_ns: None,
};
Ok((stats, make_result(None, &window)));
Ok((stats, make_result(None, &window)))
}
}
}
Expand Down

0 comments on commit 283a5a8

Please sign in to comment.