From fa235e9c73b1f6e9f699c2ee9ef1e933c561d70b Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 15:14:11 -0500 Subject: [PATCH] spelling: normalized Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/fw/util/shared_circular_buffer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fw/util/shared_circular_buffer.c b/src/fw/util/shared_circular_buffer.c index bbd5b5c7..04462e62 100644 --- a/src/fw/util/shared_circular_buffer.c +++ b/src/fw/util/shared_circular_buffer.c @@ -238,7 +238,7 @@ void subsampled_shared_circular_buffer_client_set_ratio( PBL_ASSERTN(numerator > 0 && denominator >= numerator); if (client->numerator != numerator || client->denominator != denominator) { // The subsampling algorithm does not need the subsampling ratio to - // be normalied to reduced form. + // be normalized to reduced form. client->numerator = numerator; client->denominator = denominator; // Initialize the state so that the next item in the buffer is copied,