From b23397caa0da0f1d15370332ee177d04eb6023c5 Mon Sep 17 00:00:00 2001 From: Martin Lund Date: Fri, 25 Feb 2022 07:16:14 +0100 Subject: [PATCH] Fix text --- man/tio.1.in | 2 +- src/tty.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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");