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)...