From e0fde8b891024625e73fbc18935bece6a8bcfca8 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Fri, 10 Jun 2022 01:26:14 +0200 Subject: [PATCH] Fix very important typo --- plugins/crossover/src/crossover/fir/filter.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/crossover/src/crossover/fir/filter.rs b/plugins/crossover/src/crossover/fir/filter.rs index bc456f2a..2ca26f06 100644 --- a/plugins/crossover/src/crossover/fir/filter.rs +++ b/plugins/crossover/src/crossover/fir/filter.rs @@ -209,7 +209,7 @@ impl FirCoefficients { pub fn design_fourth_order_linear_phase_low_pass_from_biquad( biquad_coefs: BiquadCoefficients, ) -> Self { - // Ruest doesn't allow you to define this as a constant + // Rust doesn't allow you to define this as a constant let center_idx = N / 2; // We'll start with an impulse (at exactly half of this odd sized buffer)...