From 283a5a8f17b6e7034e1d97a3e1b3649861c25f74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kevin=20L=C3=A4ufer?= Date: Tue, 16 Apr 2024 15:29:24 -0400 Subject: [PATCH] fix typo --- synth/src/windowing.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/synth/src/windowing.rs b/synth/src/windowing.rs index 79eeca8..c83fad9 100644 --- a/synth/src/windowing.rs +++ b/synth/src/windowing.rs @@ -212,7 +212,7 @@ 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 { @@ -220,7 +220,7 @@ where correct_repair_tries: None, correct_repair_ns: None, }; - Ok((stats, make_result(None, &window))); + Ok((stats, make_result(None, &window))) } } }