aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2018-08-23 20:32:56 +0200
committerPeter Eisentraut <peter_e@gmx.net>2018-08-23 20:33:39 +0200
commit9126b4ee1c59ef07c55227b55c45a8d4bc6590d9 (patch)
tree06942c99aae4dc8900ae6c6d67ffc9321d32fb36 /src
parentca02434a0b86e7dbc5b790f1a4d6b782ca8f4916 (diff)
downloadpostgresql-9126b4ee1c59ef07c55227b55c45a8d4bc6590d9.tar.gz
postgresql-9126b4ee1c59ef07c55227b55c45a8d4bc6590d9.zip
Copy-editing of pg_verify_checksums help and ref page
Reformat synopsis, put options into better order, make the desciption line a bit shorter, and put more details into the description.
Diffstat (limited to 'src')
-rw-r--r--src/bin/pg_verify_checksums/pg_verify_checksums.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bin/pg_verify_checksums/pg_verify_checksums.c b/src/bin/pg_verify_checksums/pg_verify_checksums.c
index 28c975446eb..7cf3cf35c7a 100644
--- a/src/bin/pg_verify_checksums/pg_verify_checksums.c
+++ b/src/bin/pg_verify_checksums/pg_verify_checksums.c
@@ -38,13 +38,13 @@ static const char *progname;
static void
usage()
{
- printf(_("%s verifies page level checksums in offline PostgreSQL database cluster.\n\n"), progname);
+ printf(_("%s verifies data checksums in a PostgreSQL database cluster.\n\n"), progname);
printf(_("Usage:\n"));
- printf(_(" %s [OPTION] [DATADIR]\n"), progname);
+ printf(_(" %s [OPTION]... [DATADIR]\n"), progname);
printf(_("\nOptions:\n"));
printf(_(" [-D, --pgdata=]DATADIR data directory\n"));
- printf(_(" -r relfilenode check only relation with specified relfilenode\n"));
- printf(_(" -d debug output, listing all checked blocks\n"));
+ printf(_(" -d debug output, list all checked blocks\n"));
+ printf(_(" -r RELFILENODE check only relation with specified relfilenode\n"));
printf(_(" -V, --version output version information, then exit\n"));
printf(_(" -?, --help show this help, then exit\n"));
printf(_("\nIf no data directory (DATADIR) is specified, "