aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Common/Common.h
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-07-30 09:48:35 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-07-30 09:48:35 +0000
commit0f45b9c8e076483cd546d0bc9c606b73455295c6 (patch)
treed1c38ead3ab0691d6a8e8db2319de93e5bd8bb5a /LUFA/Common/Common.h
parent2034141a7eb4d21a738f688b5e35a43793d17fbc (diff)
downloadlufa-0f45b9c8e076483cd546d0bc9c606b73455295c6.tar.gz
lufa-0f45b9c8e076483cd546d0bc9c606b73455295c6.tar.bz2
lufa-0f45b9c8e076483cd546d0bc9c606b73455295c6.zip
More spell checking of all source files -- correct missed errors, switch to EN-GB spelling dictionary.
Diffstat (limited to 'LUFA/Common/Common.h')
-rw-r--r--LUFA/Common/Common.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/LUFA/Common/Common.h b/LUFA/Common/Common.h
index 350585946..4f2854385 100644
--- a/LUFA/Common/Common.h
+++ b/LUFA/Common/Common.h
@@ -80,7 +80,7 @@
#define MACROE while (0)
/** Defines a volatile NOP statement which cannot be optimized out by the compiler, and thus can always
- * be set as a breakpoint in the resulting code. Useful for debugging purposes, where the optimizer
+ * be set as a breakpoint in the resulting code. Useful for debugging purposes, where the optimiser
* removes/reorders code to the point where break points cannot reliably be set.
*
* \ingroup Group_Debugging
@@ -127,7 +127,7 @@
/** Swaps the byte ordering of a 16-bit value at compile time. Do not use this macro for swapping byte orderings
* of dynamic values computed at runtime, use \ref SwapEndian_16() instead. The result of this macro can be used
- * inside struct or other variable initializers outside of a function, something that is not possible with the
+ * inside struct or other variable initialisers outside of a function, something that is not possible with the
* inline function variant.
*
* \param[in] x 16-bit value whose byte ordering is to be swapped.
@@ -138,7 +138,7 @@
/** Swaps the byte ordering of a 32-bit value at compile time. Do not use this macro for swapping byte orderings
* of dynamic values computed at runtime- use \ref SwapEndian_32() instead. The result of this macro can be used
- * inside struct or other variable initializers outside of a function, something that is not possible with the
+ * inside struct or other variable initialisers outside of a function, something that is not possible with the
* inline function variant.
*
* \param[in] x 32-bit value whose byte ordering is to be swapped.