diff options
Diffstat (limited to 'LUFA/Drivers/Misc/RingBuffer.h')
-rw-r--r-- | LUFA/Drivers/Misc/RingBuffer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/LUFA/Drivers/Misc/RingBuffer.h b/LUFA/Drivers/Misc/RingBuffer.h index 605f92c11..4b2b9b22c 100644 --- a/LUFA/Drivers/Misc/RingBuffer.h +++ b/LUFA/Drivers/Misc/RingBuffer.h @@ -170,7 +170,7 @@ *
* \param[in,out] Buffer Pointer to a ring buffer structure to insert into.
*
- * \return Boolean true if the buffer contains no free space, false otherwise.
+ * \return Boolean \c true if the buffer contains no free space, false otherwise.
*/
static inline bool RingBuffer_IsFull(RingBuffer_t* const Buffer)
{
@@ -187,7 +187,7 @@ *
* \param[in,out] Buffer Pointer to a ring buffer structure to insert into.
*
- * \return Boolean true if the buffer contains no free space, false otherwise.
+ * \return Boolean \c true if the buffer contains no free space, false otherwise.
*/
static inline bool RingBuffer_IsEmpty(RingBuffer_t* const Buffer)
{
|