We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb9ea50 commit 5e325b7Copy full SHA for 5e325b7
libs/async/async.h
@@ -84,7 +84,6 @@ struct am_async {
84
* the initial state.
85
*/
86
#define AM_ASYNC_END() \
87
- /* FALLTHROUGH */ \
88
AM_ASYNC_EXIT(); \
89
default: \
90
AM_ASSERT(0); \
@@ -108,8 +107,8 @@ struct am_async {
108
107
* Await a condition before proceeding.
109
*
110
* Checks the provided condition `cond`.
111
- * Returns if the condition is not met (false).
112
- * and on next invocation of the function the condition is evaluated again.
+ * Returns if the condition is not met (false) and
+ * on next invocation of the function the condition is evaluated again.
113
114
* Continues the function execution once the `cond` evaluates to `true`.
115
0 commit comments