diff options
author | Bruce Momjian <bruce@momjian.us> | 2020-12-03 10:28:58 -0500 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2020-12-03 10:28:58 -0500 |
commit | d415eec304c3398caa12b910877f5b2bd8545d5f (patch) | |
tree | a7d0c27a8f4b67e1fe7fae7ed0a818d0e028b921 | |
parent | 020f153dbb48519ebb9780ddbfe87b0532324d49 (diff) | |
download | postgresql-d415eec304c3398caa12b910877f5b2bd8545d5f.tar.gz postgresql-d415eec304c3398caa12b910877f5b2bd8545d5f.zip |
docs: list single-letter options first in command-line summary
In a few places, the long-version options were listed before the
single-letter ones in the command summary of a few commands. This
didn't match other commands, and didn't match the option ordering later
in the same reference page.
Backpatch-through: 9.5
-rw-r--r-- | doc/src/sgml/ref/pg_controldata.sgml | 2 | ||||
-rw-r--r-- | doc/src/sgml/ref/pg_resetwal.sgml | 6 | ||||
-rw-r--r-- | doc/src/sgml/ref/reindexdb.sgml | 10 | ||||
-rw-r--r-- | doc/src/sgml/ref/vacuumdb.sgml | 4 |
4 files changed, 11 insertions, 11 deletions
diff --git a/doc/src/sgml/ref/pg_controldata.sgml b/doc/src/sgml/ref/pg_controldata.sgml index 4aae8b193de..1f614111350 100644 --- a/doc/src/sgml/ref/pg_controldata.sgml +++ b/doc/src/sgml/ref/pg_controldata.sgml @@ -25,8 +25,8 @@ PostgreSQL documentation <arg choice="opt"><replaceable class="parameter">option</replaceable></arg> <group choice="opt"> <group choice="opt"> - <arg choice="plain"><option>--pgdata</option></arg> <arg choice="plain"><option>-D</option></arg> + <arg choice="plain"><option>--pgdata</option></arg> </group> <replaceable class="parameter"> datadir</replaceable> </group> diff --git a/doc/src/sgml/ref/pg_resetwal.sgml b/doc/src/sgml/ref/pg_resetwal.sgml index 3b6c32c8d32..338ec6b8e41 100644 --- a/doc/src/sgml/ref/pg_resetwal.sgml +++ b/doc/src/sgml/ref/pg_resetwal.sgml @@ -23,18 +23,18 @@ PostgreSQL documentation <cmdsynopsis> <command>pg_resetwal</command> <group choice="opt"> - <arg choice="plain"><option>--force</option></arg> <arg choice="plain"><option>-f</option></arg> + <arg choice="plain"><option>--force</option></arg> </group> <group choice="opt"> - <arg choice="plain"><option>--dry-run</option></arg> <arg choice="plain"><option>-n</option></arg> + <arg choice="plain"><option>--dry-run</option></arg> </group> <arg rep="repeat"><replaceable>option</replaceable></arg> <group choice="plain"> <group choice="opt"> - <arg choice="plain"><option>--pgdata</option></arg> <arg choice="plain"><option>-D</option></arg> + <arg choice="plain"><option>--pgdata</option></arg> </group> <replaceable class="parameter"> datadir</replaceable> </group> diff --git a/doc/src/sgml/ref/reindexdb.sgml b/doc/src/sgml/ref/reindexdb.sgml index 66f5612f0f2..dae5e0393dd 100644 --- a/doc/src/sgml/ref/reindexdb.sgml +++ b/doc/src/sgml/ref/reindexdb.sgml @@ -28,8 +28,8 @@ PostgreSQL documentation <arg choice="plain" rep="repeat"> <arg choice="opt"> <group choice="plain"> - <arg choice="plain"><option>--schema</option></arg> <arg choice="plain"><option>-S</option></arg> + <arg choice="plain"><option>--schema</option></arg> </group> <replaceable>schema</replaceable> </arg> @@ -38,8 +38,8 @@ PostgreSQL documentation <arg choice="plain" rep="repeat"> <arg choice="opt"> <group choice="plain"> - <arg choice="plain"><option>--table</option></arg> <arg choice="plain"><option>-t</option></arg> + <arg choice="plain"><option>--table</option></arg> </group> <replaceable>table</replaceable> </arg> @@ -48,8 +48,8 @@ PostgreSQL documentation <arg choice="plain" rep="repeat"> <arg choice="opt"> <group choice="plain"> - <arg choice="plain"><option>--index</option></arg> <arg choice="plain"><option>-i</option></arg> + <arg choice="plain"><option>--index</option></arg> </group> <replaceable>index</replaceable> </arg> @@ -64,8 +64,8 @@ PostgreSQL documentation <arg rep="repeat"><replaceable>option</replaceable></arg> <group choice="plain"> - <arg choice="plain"><option>--all</option></arg> <arg choice="plain"><option>-a</option></arg> + <arg choice="plain"><option>--all</option></arg> </group> </cmdsynopsis> @@ -75,8 +75,8 @@ PostgreSQL documentation <arg rep="repeat"><replaceable>option</replaceable></arg> <group choice="plain"> - <arg choice="plain"><option>--system</option></arg> <arg choice="plain"><option>-s</option></arg> + <arg choice="plain"><option>--system</option></arg> </group> <arg choice="opt"><replaceable>dbname</replaceable></arg> </cmdsynopsis> diff --git a/doc/src/sgml/ref/vacuumdb.sgml b/doc/src/sgml/ref/vacuumdb.sgml index f1ee120f01e..4f48b652321 100644 --- a/doc/src/sgml/ref/vacuumdb.sgml +++ b/doc/src/sgml/ref/vacuumdb.sgml @@ -28,8 +28,8 @@ PostgreSQL documentation <arg choice="plain" rep="repeat"> <arg choice="opt"> <group choice="plain"> - <arg choice="plain"><option>--table</option></arg> <arg choice="plain"><option>-t</option></arg> + <arg choice="plain"><option>--table</option></arg> </group> <replaceable>table</replaceable> <arg choice="opt">( <replaceable class="parameter">column</replaceable> [,...] )</arg> @@ -44,8 +44,8 @@ PostgreSQL documentation <arg rep="repeat"><replaceable>connection-option</replaceable></arg> <arg rep="repeat"><replaceable>option</replaceable></arg> <group choice="plain"> - <arg choice="plain"><option>--all</option></arg> <arg choice="plain"><option>-a</option></arg> + <arg choice="plain"><option>--all</option></arg> </group> </cmdsynopsis> </refsynopsisdiv> |