Fix typos

This commit is contained in:
Jakub Wilk 2017-09-28 17:13:15 +02:00
parent d07ef6a04b
commit 45bab702f4
3 changed files with 7 additions and 7 deletions

View file

@ -93,7 +93,7 @@ void handle_command_sequence(char input_char, char previous_char, char *output_c
tio_printf(" ctrl-t ? List available key commands");
tio_printf(" ctrl-t b Send break");
tio_printf(" ctrl-t c Show configuration");
tio_printf(" ctrl-t h Toggle hexidecimal mode");
tio_printf(" ctrl-t h Toggle hexadecimal mode");
tio_printf(" ctrl-t l Clear screen");
tio_printf(" ctrl-t q Quit");
tio_printf(" ctrl-t s Show statistics");
@ -118,12 +118,12 @@ void handle_command_sequence(char input_char, char previous_char, char *output_c
break;
case KEY_H:
/* Toggle hexidecimal printing mode */
/* Toggle hexadecimal printing mode */
if (print_mode == NORMAL)
{
print = print_hex;
print_mode = HEX;
tio_printf("Switched to hexidecimal mode");
tio_printf("Switched to hexadecimal mode");
}
else
{