aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Common/Common.h
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-05-29 08:08:26 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-05-29 08:08:26 +0000
commit328ed71ce728de4a6633d981441ac9837c9cd62a (patch)
tree0dede6a3b20f65700d3570adb68cf377c9977f23 /LUFA/Common/Common.h
parentc1daecf18b25566da50beb3afdcbc3e5d49d3b48 (diff)
downloadlufa-328ed71ce728de4a6633d981441ac9837c9cd62a.tar.gz
lufa-328ed71ce728de4a6633d981441ac9837c9cd62a.tar.bz2
lufa-328ed71ce728de4a6633d981441ac9837c9cd62a.zip
Fix spacing of the function parameter descriptions in the Doxygen documentation.
Diffstat (limited to 'LUFA/Common/Common.h')
-rw-r--r--LUFA/Common/Common.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/LUFA/Common/Common.h b/LUFA/Common/Common.h
index febc216bc..76307d7e9 100644
--- a/LUFA/Common/Common.h
+++ b/LUFA/Common/Common.h
@@ -118,7 +118,7 @@
*
* \ingroup Group_BitManip
*
- * \param[in] Byte Byte of data whose bits are to be reversed
+ * \param[in] Byte Byte of data whose bits are to be reversed
*/
static inline uint8_t BitReverse(uint8_t Byte) ATTR_WARN_UNUSED_RESULT ATTR_CONST;
static inline uint8_t BitReverse(uint8_t Byte)
@@ -134,7 +134,7 @@
*
* \ingroup Group_BitManip
*
- * \param[in] Word Word of data whose bytes are to be swapped
+ * \param[in] Word Word of data whose bytes are to be swapped
*/
static inline uint16_t SwapEndian_16(uint16_t Word) ATTR_WARN_UNUSED_RESULT ATTR_CONST;
static inline uint16_t SwapEndian_16(uint16_t Word)
@@ -146,7 +146,7 @@
*
* \ingroup Group_BitManip
*
- * \param[in] DWord Double word of data whose bytes are to be swapped
+ * \param[in] DWord Double word of data whose bytes are to be swapped
*/
static inline uint32_t SwapEndian_32(uint32_t DWord) ATTR_WARN_UNUSED_RESULT ATTR_CONST;
static inline uint32_t SwapEndian_32(uint32_t DWord)
@@ -161,8 +161,8 @@
*
* \ingroup Group_BitManip
*
- * \param[in,out] Data Pointer to a number containing an even number of bytes to be reversed
- * \param[in] Bytes Length of the data in bytes
+ * \param[in,out] Data Pointer to a number containing an even number of bytes to be reversed
+ * \param[in] Bytes Length of the data in bytes
*/
static inline void SwapEndian_n(void* Data, uint8_t Bytes);
static inline void SwapEndian_n(void* Data, uint8_t Bytes)