Skip to content

Commit

Permalink
biquad: fix doc link
Browse files Browse the repository at this point in the history
  • Loading branch information
jordens committed Feb 14, 2024
1 parent efbcddd commit 8965dc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/iir/biquad.rs
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ impl<T: Coefficient> Biquad<T> {
/// Filter coefficients
///
/// IIR filter tap gains (`ba`) are an array `[b0, b1, b2, a1, a2]` such that
/// [`Biquad::update(&mut xy, x0)`] returns
/// [`Biquad::update()`] returns
/// `y0 = clamp(b0*x0 + b1*x1 + b2*x2 - a1*y1 - a2*y2 + u, min, max)`.
///
/// ```
Expand Down

0 comments on commit 8965dc2

Please sign in to comment.