From 67713b78884d8798c1545af6f65cf344797993f8 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 15:31:52 -0500 Subject: [PATCH] spelling: probability Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/fw/applib/graphics/text_layout.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fw/applib/graphics/text_layout.c b/src/fw/applib/graphics/text_layout.c index f0abbed1..32be8946 100644 --- a/src/fw/applib/graphics/text_layout.c +++ b/src/fw/applib/graphics/text_layout.c @@ -795,7 +795,7 @@ static inline void prv_walk_lines_down(Iterator* const line_iter, TextLayout* co // pushes down the remaining text far enough so it ends up on yet another page. This would // enter an infinite loop. // To avoid that, we only apply this strategy, when it's "safe" to do so (in theory, there's - // still the propability to run into this scenario if the perimeter isn't vertically symmetric). + // still the probability to run into this scenario if the perimeter isn't vertically symmetric). // The chosen number should be large enough for the previous line, the orphan line plus some // buffer. const int num_safe_lines = 3;