diff options
| -rw-r--r-- | libmaple/include/libmaple/util.h | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/libmaple/include/libmaple/util.h b/libmaple/include/libmaple/util.h index 60ca0d3..5a70348 100644 --- a/libmaple/include/libmaple/util.h +++ b/libmaple/include/libmaple/util.h @@ -42,7 +42,7 @@ extern "C"{   * Bit manipulation   */ -/** 1UL << (shift) */ +/** 1UL shifted left by 'shift' */  #define BIT(shift)                     (1UL << (shift))  /** 'Mask' shifted left by 'shift' */  #define BIT_MASK_SHIFT(mask, shift)    ((mask) << (shift))  | 
