aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--os/nil/include/nil.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/os/nil/include/nil.h b/os/nil/include/nil.h
index ca84be502..5b56bf554 100644
--- a/os/nil/include/nil.h
+++ b/os/nil/include/nil.h
@@ -520,9 +520,9 @@ struct nil_system {
*
* @param[in] prio the priority level
* @return Priority range result.
- * @false if the priority is invalid or if the architecture
+ * @retval false if the priority is invalid or if the architecture
* does not support priorities.
- * @true if the priority is valid.
+ * @retval true if the priority is valid.
*/
#if defined(PORT_IRQ_IS_VALID_PRIORITY) || defined(__DOXYGEN__)
#define CH_IRQ_IS_VALID_PRIORITY(prio) \
@@ -538,9 +538,9 @@ struct nil_system {
*
* @param[in] prio the priority level
* @return Priority range result.
- * @false if the priority is invalid or if the architecture
+ * @retval false if the priority is invalid or if the architecture
* does not support priorities.
- * @true if the priority is valid.
+ * @retval true if the priority is valid.
*/
#if defined(PORT_IRQ_IS_VALID_KERNEL_PRIORITY) || defined(__DOXYGEN__)
#define CH_IRQ_IS_VALID_KERNEL_PRIORITY(prio) \