From 53b74221f2764b0096368c389e401b1af55fa856 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 15:48:47 -0500 Subject: [PATCH] spelling: system Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/fw/applib/ui/window.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fw/applib/ui/window.h b/src/fw/applib/ui/window.h index 058efecd..78fc723a 100644 --- a/src/fw/applib/ui/window.h +++ b/src/fw/applib/ui/window.h @@ -328,14 +328,14 @@ struct Layer* window_get_root_layer(const Window *window); void window_set_background_color(Window *window, GColor background_color); void window_set_background_color_2bit(Window *window, GColor2 background_color); -//! Sets whether or not the window is fullscreen, consequently hiding the sytem status bar. +//! Sets whether or not the window is fullscreen, consequently hiding the system status bar. //! @note This needs to be called before pushing a window to the window stack. //! @param window The window for which to set its full-screen property //! @param enabled True to make the window full-screen or false to leave space for the system status bar. //! @see \ref window_get_fullscreen() void window_set_fullscreen(Window *window, bool enabled); -//! Gets whether the window is full-screen, consequently hiding the sytem status bar. +//! Gets whether the window is full-screen, consequently hiding the system status bar. //! @param window The window for which to get its full-screen property //! @return True if the window is marked as fullscreen, false if it is not marked as fullscreen. bool window_get_fullscreen(const Window *window);