From aaeba97a37cba6e5e489465d801896aade6888aa Mon Sep 17 00:00:00 2001 From: Stefano D'Angelo Date: Sat, 1 Feb 2025 15:23:11 +0100 Subject: [PATCH] fix typo in bw_iir2 --- include/bw_iir2.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/bw_iir2.h b/include/bw_iir2.h index 162c8ec..f8e19f3 100644 --- a/include/bw_iir2.h +++ b/include/bw_iir2.h @@ -135,7 +135,8 @@ static inline void bw_iir2_process( /*! <<<``` * Processes the first `n_samples` of the input buffer `x` and fills the * first `n_samples` of the output buffer `y`, while using coefficients `b0`, - * `b1`, `b2, `a1`, and `a2`. The next state values are put in `s1` and `s2`. + * `b1`, `b2`, `a1`, and `a2`. The next state values are put in `s1` and + * `s2`. * * The given coefficients must describe a stable filter. *