aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/Misc/TerminalCodes.h
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2013-03-14 21:08:53 +0000
committerDean Camera <dean@fourwalledcubicle.com>2013-03-14 21:08:53 +0000
commit1575ca57bb1039415227bf18e0964b7c2d4fb653 (patch)
tree31ccd9852128a04d8fdd2e40d446d6bdb445b5b8 /LUFA/Drivers/Misc/TerminalCodes.h
parente635872612fb054791a121a2920432574b9245bb (diff)
downloadlufa-1575ca57bb1039415227bf18e0964b7c2d4fb653.tar.gz
lufa-1575ca57bb1039415227bf18e0964b7c2d4fb653.tar.bz2
lufa-1575ca57bb1039415227bf18e0964b7c2d4fb653.zip
Minor documentation improvements.
Diffstat (limited to 'LUFA/Drivers/Misc/TerminalCodes.h')
-rw-r--r--LUFA/Drivers/Misc/TerminalCodes.h4
1 files changed, 2 insertions, 2 deletions
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")