diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-06-09 20:33:56 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-06-09 20:33:56 +0000 |
commit | 3808f5c36d0ee183e9825e645cc984f1c6047ef5 (patch) | |
tree | a7830d3c19aeb6a2461d701245458217e8829767 /LUFA/Common | |
parent | 544027da185fbfb51461460c607f956ccee9e54b (diff) | |
download | lufa-3808f5c36d0ee183e9825e645cc984f1c6047ef5.tar.gz lufa-3808f5c36d0ee183e9825e645cc984f1c6047ef5.tar.bz2 lufa-3808f5c36d0ee183e9825e645cc984f1c6047ef5.zip |
Spell check source code, fix mistakes.
Diffstat (limited to 'LUFA/Common')
-rw-r--r-- | LUFA/Common/ArchitectureSpecific.h | 2 | ||||
-rw-r--r-- | LUFA/Common/Attributes.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/LUFA/Common/ArchitectureSpecific.h b/LUFA/Common/ArchitectureSpecific.h index 1a05be812..9b719a221 100644 --- a/LUFA/Common/ArchitectureSpecific.h +++ b/LUFA/Common/ArchitectureSpecific.h @@ -66,7 +66,7 @@ #if (ARCH == ARCH_AVR8) || (ARCH == ARCH_XMEGA) || defined(__DOXYGEN__) #if (ARCH == ARCH_AVR8) || defined(__DOXYGEN__) /** Re-enables the AVR's JTAG bus in software, until a system reset. This will re-enable JTAG debugging - * interface after is has been disbled in software via \ref JTAG_DISABLE(). + * interface after is has been disabled in software via \ref JTAG_DISABLE(). * * \note This macro is not available for all architectures. */ diff --git a/LUFA/Common/Attributes.h b/LUFA/Common/Attributes.h index f4040b23e..b058eed8f 100644 --- a/LUFA/Common/Attributes.h +++ b/LUFA/Common/Attributes.h @@ -116,7 +116,7 @@ /** Forces the compiler to not automatically zero the given global variable on startup, so that the * current RAM contents is retained. Under most conditions this value will be random due to the - * behaviour of volatile memory once power is removed, but may be used in some specific circumstances, + * behavior of volatile memory once power is removed, but may be used in some specific circumstances, * like the passing of values back after a system watchdog reset. */ #define ATTR_NO_INIT __attribute__ ((section (".noinit"))) |