Minor update to function comment

This commit is contained in:
Th3maz1ng 2023-10-01 19:38:58 +02:00
parent 0bb9c1fe7e
commit 72ddebfb8b
3 changed files with 3 additions and 3 deletions

View File

@ -43,7 +43,7 @@ typedef struct CompassScreen
* @brief Initializes the compass screen object structure.
* @note This function has to be called first before any others.
*
* @param compassScreen a pointer to the compass screen object structure.
* @param compassScreen a pointer to the compass screen object structure to initialize.
*/
void compass_screen_init(CompassScreen_t * const compassScreen);

View File

@ -32,7 +32,7 @@ typedef struct FindMyPhoneScreen
/**
* @brief Initializes the find my phone screen object structure.
*
* @param findMyPhoneScreen a pointer to the find my phone screen object structure.
* @param findMyPhoneScreen a pointer to the find my phone screen object structure to initialize.
*/
void find_my_phone_screen_init(FindMyPhoneScreen_t * const findMyPhoneScreen);

View File

@ -82,7 +82,7 @@ typedef struct WatchFace
* @brief Initializes the watch face context object
* @note This function has to be called first before any others
*
* @param watchFace a pointer to the watch face context structure.
* @param watchFace a pointer to the watch face context structure to initialize.
*/
void watch_face_init(WatchFace_t * const watchFace);