diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2018-09-13 23:35:43 +0200 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2018-09-13 23:35:43 +0200 |
commit | f48fa2bc8b6252ae8fccc69729a3bddb6863b8f1 (patch) | |
tree | 4015fb884885c8e35c2409db33fbb4c9800014c1 /src/bin/psql/help.c | |
parent | 240d40db88ec0e6f98ac547759bac8e331f3ba89 (diff) | |
download | postgresql-f48fa2bc8b6252ae8fccc69729a3bddb6863b8f1.tar.gz postgresql-f48fa2bc8b6252ae8fccc69729a3bddb6863b8f1.zip |
Message style improvements
Fix one untranslatable string concatenation in pg_rewind.
Fix one message in pg_verify_checksums to use a style use elsewhere
and avoid plural issues.
Fix one gratuitous abbreviation in psql.
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 316030d358a..586aebddd3d 100644 --- a/src/bin/psql/help.c +++ b/src/bin/psql/help.c @@ -369,7 +369,7 @@ helpVariables(unsigned short int pager) fprintf(output, _(" HISTFILE\n" " file name used to store the command history\n")); fprintf(output, _(" HISTSIZE\n" - " max number of commands to store in the command history\n")); + " maximum number of commands to store in the command history\n")); fprintf(output, _(" HOST\n" " the currently connected database server host\n")); fprintf(output, _(" IGNOREEOF\n" |