summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane2016-02-04 18:58:40 +0000
committerTom Lane2016-02-04 18:58:40 +0000
commit5ef244a28266ce8e5666b23baed33a4c238542ff (patch)
tree3b500661191d4cf143987757d44427ef2e9cd50f
parent0ed707e9b7e90891d0eda91b353edf3a69c4b7c4 (diff)
Simplify syntax diagram for REINDEX.
Since there currently is only one possible parenthesized option, namely VERBOSE, it's a bit pointless to show it with "{ } [, ... ]". The curly braces are useless and therefore confusing, as seen in a recent question from Karsten Hilbert. Remove the extra decoration for the time being; we can put it back when and if REINDEX grows some more options.
-rw-r--r--doc/src/sgml/ref/reindex.sgml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/ref/reindex.sgml b/doc/src/sgml/ref/reindex.sgml
index 703b7609cf..3908ade37b 100644
--- a/doc/src/sgml/ref/reindex.sgml
+++ b/doc/src/sgml/ref/reindex.sgml
@@ -21,7 +21,7 @@ PostgreSQL documentation
<refsynopsisdiv>
<synopsis>
-REINDEX [ ( { VERBOSE } [, ...] ) ] { INDEX | TABLE | SCHEMA | DATABASE | SYSTEM } <replaceable class="PARAMETER">name</replaceable>
+REINDEX [ ( VERBOSE ) ] { INDEX | TABLE | SCHEMA | DATABASE | SYSTEM } <replaceable class="PARAMETER">name</replaceable>
</synopsis>
</refsynopsisdiv>