From 6310f28d2cb4a234597cccb4f93456d9149cd82d Mon Sep 17 00:00:00 2001 From: Martin Lund Date: Tue, 8 Feb 2022 21:43:43 +0100 Subject: [PATCH] Shorten timestamp description --- README.md | 2 +- man/tio.1 | 2 +- src/options.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7682d1a..a75052b 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ The command-line interface is straightforward as reflected in the output from -o, --output-delay Output delay (default: 0) -n, --no-autoconnect Disable automatic connect -e, --local-echo Do local echo - -t, --timestamp Prefix each new line with a timestamp + -t, --timestamp Timestamp lines -l, --log Log to file -m, --map Map special characters -v, --version Display version diff --git a/man/tio.1 b/man/tio.1 index c4eeac0..d1f1e2a 100644 --- a/man/tio.1 +++ b/man/tio.1 @@ -59,7 +59,7 @@ Enable local echo. .TP .BR \-t ", " \-\-timestamp -Prefix each new line with a timestamp. +Timestamp lines. .TP .BR \-l ", " "\-\-log " \fI diff --git a/src/options.c b/src/options.c index a8ea006..aace521 100644 --- a/src/options.c +++ b/src/options.c @@ -64,7 +64,7 @@ void print_help(char *argv[]) printf(" -o, --output-delay Output delay (default: 0)\n"); printf(" -n, --no-autoconnect Disable automatic connect\n"); printf(" -e, --local-echo Do local echo\n"); - printf(" -t, --timestamp Prefix each new line with a timestamp\n"); + printf(" -t, --timestamp Timestamp lines\n"); printf(" -l, --log Log to file\n"); printf(" -m, --map Map special characters\n"); printf(" -v, --version Display version\n");