From 2a7d5ceaa42ffb95af1c67c057807f7b6834bfdc Mon Sep 17 00:00:00 2001
From: Josh Soref <2119212+jsoref@users.noreply.github.com>
Date: Tue, 28 Jan 2025 13:20:56 -0500
Subject: [PATCH] spelling: coordinates

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
---
 src/fw/applib/graphics/graphics_private.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/fw/applib/graphics/graphics_private.c b/src/fw/applib/graphics/graphics_private.c
index 49330656..71508cd8 100644
--- a/src/fw/applib/graphics/graphics_private.c
+++ b/src/fw/applib/graphics/graphics_private.c
@@ -191,7 +191,7 @@ void graphics_private_draw_horizontal_line_prepared(GContext *ctx, GBitmap *fram
 
 void graphics_private_draw_horizontal_line_integral(GContext *ctx, GBitmap *framebuffer, int16_t y,
                                                     int16_t x1, int16_t x2, GColor color) {
-  // This is a wrapper for prv_draw_horizontal_line_raw for integral coordintaes
+  // This is a wrapper for prv_draw_horizontal_line_raw for integral coordinates
 
   // End of the line is inclusive so we subtract one
   x2--;