From 0913d0c77dacf739162f05901cadda44098a2644 Mon Sep 17 00:00:00 2001 From: Nat <56046513+NathaanTFM@users.noreply.github.com> Date: Fri, 10 Jan 2025 22:35:39 +0100 Subject: [PATCH] Fix return doc for goertzel_update --- src/spandsp/tone_detect.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/spandsp/tone_detect.h b/src/spandsp/tone_detect.h index 61cd03b0..48228414 100644 --- a/src/spandsp/tone_detect.h +++ b/src/spandsp/tone_detect.h @@ -106,7 +106,7 @@ SPAN_DECLARE(void) goertzel_reset(goertzel_state_t *s); \param s The Goertzel context. \param amp The samples to be transformed. \param samples The number of samples. - \return The number of samples unprocessed */ + \return The number of samples processed */ SPAN_DECLARE(int) goertzel_update(goertzel_state_t *s, const int16_t amp[], int samples);