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 {