aboutsummaryrefslogtreecommitdiffstats
path: root/os/kernel/include/chqueues.h
diff options
context:
space:
mode:
Diffstat (limited to 'os/kernel/include/chqueues.h')
-rw-r--r--os/kernel/include/chqueues.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/os/kernel/include/chqueues.h b/os/kernel/include/chqueues.h
index ff90d9e5f..39951e553 100644
--- a/os/kernel/include/chqueues.h
+++ b/os/kernel/include/chqueues.h
@@ -153,8 +153,8 @@ typedef GenericQueue InputQueue;
*
* @param[in] iqp pointer to an @p InputQueue structure.
* @return The queue status.
- * @retval FALSE The queue is not empty.
- * @retval TRUE The queue is empty.
+ * @retval FALSE if the queue is not empty.
+ * @retval TRUE if the queue is empty.
*
* @iclass
*/
@@ -165,8 +165,8 @@ typedef GenericQueue InputQueue;
*
* @param[in] iqp pointer to an @p InputQueue structure.
* @return The queue status.
- * @retval FALSE The queue is not full.
- * @retval TRUE The queue is full.
+ * @retval FALSE if the queue is not full.
+ * @retval TRUE if the queue is full.
*
* @iclass
*/
@@ -268,8 +268,8 @@ typedef GenericQueue OutputQueue;
*
* @param[in] oqp pointer to an @p OutputQueue structure.
* @return The queue status.
- * @retval FALSE The queue is not empty.
- * @retval TRUE The queue is empty.
+ * @retval FALSE if the queue is not empty.
+ * @retval TRUE if the queue is empty.
*
* @iclass
*/
@@ -281,8 +281,8 @@ typedef GenericQueue OutputQueue;
*
* @param[in] oqp pointer to an @p OutputQueue structure.
* @return The queue status.
- * @retval FALSE The queue is not full.
- * @retval TRUE The queue is full.
+ * @retval FALSE if the queue is not full.
+ * @retval TRUE if the queue is full.
*
* @iclass
*/