diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2016-07-12 18:10:16 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2016-07-12 18:11:45 -0400 |
commit | b9fc9f7c3c4096aca69261af305c679ffe74c32b (patch) | |
tree | bd605bfbba93c122f762491c428e00e0eab80c50 /src/bin/psql/help.c | |
parent | baebab3ace480477f210dadc4633d8d119dfa978 (diff) | |
download | postgresql-b9fc9f7c3c4096aca69261af305c679ffe74c32b.tar.gz postgresql-b9fc9f7c3c4096aca69261af305c679ffe74c32b.zip |
Put some things in a better order in psql help
Diffstat (limited to 'src/bin/psql/help.c')
-rw-r--r-- | src/bin/psql/help.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c index 9e6d67b0ea9..efc845414fb 100644 --- a/src/bin/psql/help.c +++ b/src/bin/psql/help.c @@ -372,8 +372,8 @@ helpVariables(unsigned short int pager) fprintf(output, _(" expanded (or x) expanded output [on, off, auto]\n")); fprintf(output, _(" fieldsep field separator for unaligned output (default \"%s\")\n"), DEFAULT_FIELD_SEP); fprintf(output, _(" fieldsep_zero set field separator for unaligned output to zero byte\n")); - fprintf(output, _(" format set output format [unaligned, aligned, wrapped, html, asciidoc, ...]\n")); fprintf(output, _(" footer enable or disable display of the table footer [on, off]\n")); + fprintf(output, _(" format set output format [unaligned, aligned, wrapped, html, asciidoc, ...]\n")); fprintf(output, _(" linestyle set the border line drawing style [ascii, old-ascii, unicode]\n")); fprintf(output, _(" null set the string to be printed in place of a null value\n")); fprintf(output, _(" numericlocale enable or disable display of a locale-specific character to separate\n" |