From 43f4fc9b2c88c01f4473b1c6cfad2569ac89eabf Mon Sep 17 00:00:00 2001 From: Christian Kroll Date: Fri, 26 Sep 2014 03:28:51 +0200 Subject: [PATCH] uart_commands.c: typo in error message corrected --- src/uart/uart_commands.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uart/uart_commands.c b/src/uart/uart_commands.c index 40c05e2..66238eb 100644 --- a/src/uart/uart_commands.c +++ b/src/uart/uart_commands.c @@ -50,7 +50,7 @@ char const UART_STR_GAMEMO_ERR[] PROGMEM = "No mode change during games."CR; char const UART_STR_GAMETX_ERR[] PROGMEM = "No text messages during games."CR; char const UART_STR_UART_ERR[] PROGMEM = "Transmission error."CR; char const UART_STR_UNKNOWN[] PROGMEM = "Unknown command or syntax error."CR; -char const UART_STR_TOOLONG[] PROGMEM = "Command is to long."CR; +char const UART_STR_TOOLONG[] PROGMEM = CR"Command is too long."CR; char const UART_STR_HELP[] PROGMEM = "Allowed commands: erase help mode " "msg next prev reset scroll"CR;