1
0
Fork 0

Fix a very important typo

This commit is contained in:
Robbert van der Helm 2022-03-29 03:16:55 +02:00
parent 8ecc30e399
commit d9b018b125
2 changed files with 2 additions and 2 deletions

View file

@ -43,7 +43,7 @@ pub struct BiquadCoefficients<T> {
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<Output = Self> + Sub<Output = Self> + Add<Output = Self> + Copy + Sized
{

View file

@ -43,7 +43,7 @@ pub struct BiquadCoefficients<T> {
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<Output = Self> + Sub<Output = Self> + Add<Output = Self> + Copy + Sized
{