From d9b018b125b39f55c6be5339345777f60c33ee49 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Tue, 29 Mar 2022 03:16:55 +0200 Subject: [PATCH] Fix a very important typo --- plugins/crisp/src/filter.rs | 2 +- plugins/diopser/src/filter.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/crisp/src/filter.rs b/plugins/crisp/src/filter.rs index 59cbe06f..ee4eceed 100644 --- a/plugins/crisp/src/filter.rs +++ b/plugins/crisp/src/filter.rs @@ -43,7 +43,7 @@ pub struct BiquadCoefficients { a2: T, } -/// Either an `f32` or some SIMD vector type of `f32`s that can be used iwth our biquads. +/// Either an `f32` or some SIMD vector type of `f32`s that can be used with our biquads. pub trait SimdType: Mul + Sub + Add + Copy + Sized { diff --git a/plugins/diopser/src/filter.rs b/plugins/diopser/src/filter.rs index 96f2c266..fcb0e6ff 100644 --- a/plugins/diopser/src/filter.rs +++ b/plugins/diopser/src/filter.rs @@ -43,7 +43,7 @@ pub struct BiquadCoefficients { a2: T, } -/// Either an `f32` or some SIMD vector type of `f32`s that can be used iwth our biquads. +/// Either an `f32` or some SIMD vector type of `f32`s that can be used with our biquads. pub trait SimdType: Mul + Sub + Add + Copy + Sized {