diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2015-09-16 00:37:39 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2015-09-16 00:37:39 -0400 |
commit | ea00ff5f1058d2ede0b3ddda47b8713f11a6832a (patch) | |
tree | 55c715f06631c237b446f7c1f175a40923c0d001 /src/bin/psql/help.c | |
parent | 68b5201128c2d0c8a3a0051ff7c2534b037e1eab (diff) | |
download | postgresql-ea00ff5f1058d2ede0b3ddda47b8713f11a6832a.tar.gz postgresql-ea00ff5f1058d2ede0b3ddda47b8713f11a6832a.zip |
Review program help output for wording and formatting
Diffstat (limited to 'src/bin/psql/help.c')
-rw-r--r-- | src/bin/psql/help.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c index b523054825f..5fb11ed526a 100644 --- a/src/bin/psql/help.c +++ b/src/bin/psql/help.c @@ -81,14 +81,15 @@ usage(unsigned short int pager) fprintf(output, _(" -f, --file=FILENAME execute commands from file, then exit\n")); fprintf(output, _(" -l, --list list available databases, then exit\n")); fprintf(output, _(" -v, --set=, --variable=NAME=VALUE\n" - " set psql variable NAME to VALUE e.g.: -v ON_ERROR_STOP=1\n")); + " set psql variable NAME to VALUE\n" + " (e.g., -v ON_ERROR_STOP=1)\n")); fprintf(output, _(" -V, --version output version information, then exit\n")); fprintf(output, _(" -X, --no-psqlrc do not read startup file (~/.psqlrc)\n")); fprintf(output, _(" -1 (\"one\"), --single-transaction\n" " execute as a single transaction (if non-interactive)\n")); fprintf(output, _(" -?, --help[=options] show this help, then exit\n")); - fprintf(output, _(" --help=variables show a list of all specially treated variables, then exit\n")); - fprintf(output, _(" --help=commands show a list of backslash commands, then exit\n")); + fprintf(output, _(" --help=commands list backslash commands, then exit\n")); + fprintf(output, _(" --help=variables list special variables, then exit\n")); fprintf(output, _("\nInput and output options:\n")); fprintf(output, _(" -a, --echo-all echo all input from script\n")); |