summaryrefslogtreecommitdiffstats
path: root/text-utils/column.c
diff options
context:
space:
mode:
authorBenno Schulenberg2013-05-29 21:52:56 +0200
committerKarel Zak2013-06-07 12:11:14 +0200
commit4ce393f4d899d44e1deb8c9e04142011c072b4e0 (patch)
treecc756b55de85a53b03133d501db90dd4245882a6 /text-utils/column.c
parenttextual: harmonize some loop-device error messages (diff)
downloadkernel-qcow2-util-linux-4ce393f4d899d44e1deb8c9e04142011c072b4e0.tar.gz
kernel-qcow2-util-linux-4ce393f4d899d44e1deb8c9e04142011c072b4e0.tar.xz
kernel-qcow2-util-linux-4ce393f4d899d44e1deb8c9e04142011c072b4e0.zip
textual: fix several typos and angular brackets in messages
Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
Diffstat (limited to 'text-utils/column.c')
-rw-r--r--text-utils/column.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/text-utils/column.c b/text-utils/column.c
index 2649fecee..e29ea473a 100644
--- a/text-utils/column.c
+++ b/text-utils/column.c
@@ -89,13 +89,13 @@ static void __attribute__((__noreturn__)) usage(int rc)
FILE *out = rc == EXIT_FAILURE ? stderr : stdout;
fputs(USAGE_HEADER, out);
- fprintf(out, _(" %s [options] [file ...]\n"), program_invocation_short_name);
+ fprintf(out, _(" %s [options] [<file>...]\n"), program_invocation_short_name);
fputs(USAGE_OPTIONS, out);
fputs(_(" -c, --columns <width> width of output in number of characters\n"), out);
fputs(_(" -t, --table create a table\n"), out);
fputs(_(" -s, --separator <string> possible table delimiters\n"), out);
- fputs(_(" -o, --output-separator <string>\n"), out);
- fputs(_(" table output column separator, default is two spaces\n"), out);
+ fputs(_(" -o, --output-separator <string>\n"
+ " columns separator for table output; default is two spaces\n"), out);
fputs(_(" -x, --fillrows fill rows before columns\n"), out);
fputs(USAGE_SEPARATOR, out);
fputs(USAGE_HELP, out);