diff --git a/man/tio.1.in b/man/tio.1.in index 006d062..218c872 100644 --- a/man/tio.1.in +++ b/man/tio.1.in @@ -146,7 +146,7 @@ Show TX/RX statistics .IP "\fBctrl-t t" Send ctrl-t key code .IP "\fBctrl-t L" -Show lines state (DTR, RTS, CTS, DSR, DCD, RI) +Show line states (DTR, RTS, CTS, DSR, DCD, RI) .IP "\fBctrl-t d" Toggle DTR .IP "\fBctrl-t r" diff --git a/src/tty.c b/src/tty.c index 0767d0c..11defc2 100644 --- a/src/tty.c +++ b/src/tty.c @@ -127,7 +127,7 @@ void handle_command_sequence(char input_char, char previous_char, char *output_c tio_printf(" ctrl-t e Toggle local echo mode"); tio_printf(" ctrl-t h Toggle hexadecimal mode"); tio_printf(" ctrl-t l Clear screen"); - tio_printf(" ctrl-t L Show lines state"); + tio_printf(" ctrl-t L Show line states"); tio_printf(" ctrl-t q Quit"); tio_printf(" ctrl-t r Toggle RTS line"); tio_printf(" ctrl-t s Show statistics");