From 8db950eef859ec839757832a49e6da3d408672da Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 15:09:56 -0500 Subject: [PATCH] spelling: milliseconds Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/fw/apps/demo_apps/stroke_width.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/fw/apps/demo_apps/stroke_width.c b/src/fw/apps/demo_apps/stroke_width.c index a9f28404..8b6504f0 100644 --- a/src/fw/apps/demo_apps/stroke_width.c +++ b/src/fw/apps/demo_apps/stroke_width.c @@ -286,8 +286,8 @@ static void canvas_update_proc(Layer *layer, GContext* ctx) { uint16_t now_ms = time_ms(&now, NULL); uint32_t seconds = pbl_override_localtime(&now)->tm_sec; - uint32_t miliseconds = seconds * 1000 + now_ms; - uint32_t rotation = miliseconds * TRIG_MAX_ANGLE / (60 * 1000); + uint32_t milliseconds = seconds * 1000 + now_ms; + uint32_t rotation = milliseconds * TRIG_MAX_ANGLE / (60 * 1000); GPointPrecise p0; GPointPrecise p1; @@ -317,8 +317,8 @@ static void canvas_update_proc(Layer *layer, GContext* ctx) { uint16_t now_ms = time_ms(&now, NULL); uint32_t seconds = pbl_override_localtime(&now)->tm_sec; - uint32_t miliseconds = seconds * 1000 + now_ms; - uint32_t rotation = miliseconds * TRIG_MAX_ANGLE / (60 * 1000); + uint32_t milliseconds = seconds * 1000 + now_ms; + uint32_t rotation = milliseconds * TRIG_MAX_ANGLE / (60 * 1000); GPointPrecise p0; GPointPrecise p1;