diff options
Diffstat (limited to 'src/include/debug.h')
-rw-r--r-- | src/include/debug.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/debug.h b/src/include/debug.h index 6bd3845b4..52c15cf08 100644 --- a/src/include/debug.h +++ b/src/include/debug.h @@ -67,8 +67,8 @@ extern "C" { * with the specified message.
* @param c the condition to be verified to be true
* @param m the text message
- * @note The condition is tested only if the \p CH_USE_DEBUG switch is
- * specified in \p chconf.h else the macro does nothing.
+ * @note The condition is tested only if the @p CH_USE_DEBUG switch is
+ * specified in @p chconf.h else the macro does nothing.
*/
#define chDbgAssert(c, m) { \
if (!(c)) \
|