From 2d338feac4314c6fcdb363e11556e5eb0ca5f1a3 Mon Sep 17 00:00:00 2001 From: Oleg Hahm Date: Tue, 8 Apr 2014 21:27:57 +0200 Subject: [PATCH] core: documentation: fixed bitarithm documentation --- core/include/bitarithm.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/include/bitarithm.h b/core/include/bitarithm.h index 63941e8868..3c77b9862c 100644 --- a/core/include/bitarithm.h +++ b/core/include/bitarithm.h @@ -44,10 +44,10 @@ /** * @def SETBIT - * @brief Sets a single bit in a bitfield + * @brief Sets a bitbitmask for a bitfield * * @param[in] val The bitfield - * @param[in] bit Specifies the bit to be set + * @param[in] bit Specifies the bits to be set * * @return The modified bitfield */ @@ -55,10 +55,10 @@ /** * @def CLRBIT - * @brief Clears a single bit in a bitfield + * @brief Clears bitmask for a bitfield * * @param[in] val The bitfield - * @param[in] bit Specifies the bit to be cleared + * @param[in] bit Specifies the bits to be cleared * * @return The modified bitfield */