Skip to content

Commit

Permalink
clang fix
Browse files Browse the repository at this point in the history
  • Loading branch information
forntoh committed Sep 23, 2024
1 parent d42518a commit 1e88e8e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions src/ItemBack.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
/**
* @class ItemBack
* @brief A menu item that navigates back to the previous screen.
*
* The ItemBack class represents a menu item that, when selected,
*
* The ItemBack class represents a menu item that, when selected,
* navigates back to the previous screen in the menu system.
*
*
* @details
* This class inherits from the MenuItem class and overrides the
* This class inherits from the MenuItem class and overrides the
* process method to handle the ENTER command by changing the screen.
*
*
* @note The default text for this item is "..".
*/
class ItemBack : public MenuItem {
Expand Down
4 changes: 2 additions & 2 deletions src/ItemCommand.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
/**
* @class ItemCommand
* @brief Represents a menu item that executes a command when selected.
*
*
* The ItemCommand class inherits from MenuItem and allows for the execution
* of a callback function when the item is entered. This is useful for creating
* interactive menu items in an LCD menu system.
*
*
* @note The callback function should match the signature defined by the fptr type.
*/
class ItemCommand : public MenuItem {
Expand Down
2 changes: 1 addition & 1 deletion src/ItemSubMenu.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/**
* @class ItemSubMenu
* @brief Represents a submenu item in a menu.
*
*
* This class extends the MenuItem class and provides functionality to navigate
* to a different screen when the item is selected.
*/
Expand Down

0 comments on commit 1e88e8e

Please sign in to comment.