diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2010-06-16 11:01:01 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-06-16 11:01:01 +0000 |
commit | 711542ee8986482a12796ffdbc4a32912b267e44 (patch) | |
tree | ba4f65644091c31e9bcf939bb36b11771197756d /LUFA/Drivers/USB/Class/Host/HIDParser.h | |
parent | 13ea700b35aa8ee9f89cf1cb06d41109d065bfcf (diff) | |
download | lufa-711542ee8986482a12796ffdbc4a32912b267e44.tar.gz lufa-711542ee8986482a12796ffdbc4a32912b267e44.tar.bz2 lufa-711542ee8986482a12796ffdbc4a32912b267e44.zip |
Spell check code and manual pages. Remove custom Doxygen CSS stylesheet, as the new 1.7 Doxygen's default stylesheet is much better.
Diffstat (limited to 'LUFA/Drivers/USB/Class/Host/HIDParser.h')
-rw-r--r-- | LUFA/Drivers/USB/Class/Host/HIDParser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LUFA/Drivers/USB/Class/Host/HIDParser.h b/LUFA/Drivers/USB/Class/Host/HIDParser.h index 017e2f6d0..e8717d058 100644 --- a/LUFA/Drivers/USB/Class/Host/HIDParser.h +++ b/LUFA/Drivers/USB/Class/Host/HIDParser.h @@ -136,7 +136,7 @@ * \param[in] reportitem HID Report Item whose retrieved value is to be aligned * \param[in] type Data type to align the HID report item's value to * - * \return Left-aligned data of the given report item's pre-retrived value for the given datatype + * \return Left-aligned data of the given report item's pre-retrieved value for the given datatype */ #define HID_ALIGN_DATA(reportitem, type) ((type)(reportitem->Value << ((8 * sizeof(type)) - reportitem->Attributes.BitSize))) |