aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Bootloaders/MassStorage/Lib/VirtualFAT.c2
-rw-r--r--LUFA/Drivers/Misc/TerminalCodes.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/Bootloaders/MassStorage/Lib/VirtualFAT.c b/Bootloaders/MassStorage/Lib/VirtualFAT.c
index 024c4a6f0..ee0107c1b 100644
--- a/Bootloaders/MassStorage/Lib/VirtualFAT.c
+++ b/Bootloaders/MassStorage/Lib/VirtualFAT.c
@@ -75,7 +75,7 @@ static const FATBootBlock_t BootBlock =
static FATDirectoryEntry_t FirmwareFileEntries[2] =
{
/* Root volume label entry; disk label is contained in the Filename and
- * Extension fields (concantenated) with a special attribute flag - other
+ * Extension fields (concatenated) with a special attribute flag - other
* fields are ignored. Should be the same as the label in the boot block.
*/
{
diff --git a/LUFA/Drivers/Misc/TerminalCodes.h b/LUFA/Drivers/Misc/TerminalCodes.h
index 95d563f2e..696c17d5e 100644
--- a/LUFA/Drivers/Misc/TerminalCodes.h
+++ b/LUFA/Drivers/Misc/TerminalCodes.h
@@ -93,7 +93,7 @@
/** Turns on inverse so that any following text is printed to the terminal in inverted colours. */
#define ESC_INVERSE_ON ANSI_ESCAPE_SEQUENCE("7m")
- /** Turns on strikethrough so that any following text is printed to the terminal with a line through the
+ /** Turns on strike-through so that any following text is printed to the terminal with a line through the
* center.
*/
#define ESC_STRIKETHROUGH_ON ANSI_ESCAPE_SEQUENCE("9m")
@@ -110,7 +110,7 @@
/** Turns off inverse so that any following text is printed to the terminal in non inverted colours. */
#define ESC_INVERSE_OFF ANSI_ESCAPE_SEQUENCE("27m")
- /** Turns off strikethrough so that any following text is printed to the terminal without a line through
+ /** Turns off strike-through so that any following text is printed to the terminal without a line through
* the center.
*/
#define ESC_STRIKETHROUGH_OFF ANSI_ESCAPE_SEQUENCE("29m")