Skip to content

Commit 45931e7

Browse files
committed
Make doxygen happy
1 parent 6a4e9e3 commit 45931e7

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

furi/core/thread.h

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -78,13 +78,15 @@ typedef int32_t (*FuriThreadCallback)(void* context);
7878
typedef void (*FuriThreadStdoutWriteCallback)(const char* data, size_t size);
7979

8080
/**
81-
* @brief State change callback function pointer type.
81+
* @brief State change callback function pointer type.
8282
*
83-
* The function to be used as a state callback MUST follow this signature.
83+
* The function to be used as a state callback MUST follow this
84+
* signature.
8485
*
85-
* @param[in] pointer to the FuriThread instance that changed the state
86-
* @param[in] state identifier of the state the thread has transitioned to
87-
* @param[in,out] context pointer to a user-specified object
86+
* @param[in] thread to the FuriThread instance that changed the state
87+
* @param[in] state identifier of the state the thread has transitioned
88+
* to
89+
* @param[in,out] context pointer to a user-specified object
8890
*/
8991
typedef void (*FuriThreadStateCallback)(FuriThread* thread, FuriThreadState state, void* context);
9092

0 commit comments

Comments
 (0)