From 173bdadc3aa915aa9a495493d4120ae38de58812 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 15:37:56 -0500 Subject: [PATCH] spelling: scanlines Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/fw/applib/graphics/graphics_circle.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fw/applib/graphics/graphics_circle.c b/src/fw/applib/graphics/graphics_circle.c index a67aeacc..deeab117 100644 --- a/src/fw/applib/graphics/graphics_circle.c +++ b/src/fw/applib/graphics/graphics_circle.c @@ -885,7 +885,7 @@ static void prv_fill_oval_precise(GContext *ctx, GPointPrecise center, // Range for scanline, since scanlines are mirrored from the middle of the circle this is also // indicated from the middle, therefore initialised with 0 (as middle) and - // radius_y (as scalines are on y axis) + // radius_y (as scanlines are on y axis) int draw_min = 0; int draw_max = radius_outer_y.integer;