doc: Remove superfluous bracket in synopsis
authorDaniel Gustafsson <dgustafsson@postgresql.org>
Thu, 8 Feb 2024 11:19:34 +0000 (12:19 +0100)
committerDaniel Gustafsson <dgustafsson@postgresql.org>
Thu, 8 Feb 2024 11:19:34 +0000 (12:19 +0100)
Commit 9c08aea6a30 accidentally added one too many end brackets
in the synopsis for CREATE DATABASE .. strategy = strat. Fix by
removing. Backpatch to v15 where it was introduced.

Reported-by: tim.needham2@gmail.com
Discussion: https://postgr.es/m/170734160862.3279712.810853722572951776@wrigleys.postgresql.org
Backpatch-through: v15

doc/src/sgml/ref/create_database.sgml

index ce7317f81ba6d4bc2b357a4bf1729d3f9554af2c..72927960ebbdb39638e7b7597289a137b5c92a51 100644 (file)
@@ -25,7 +25,7 @@ CREATE DATABASE <replaceable class="parameter">name</replaceable>
     [ WITH ] [ OWNER [=] <replaceable class="parameter">user_name</replaceable> ]
            [ TEMPLATE [=] <replaceable class="parameter">template</replaceable> ]
            [ ENCODING [=] <replaceable class="parameter">encoding</replaceable> ]
-           [ STRATEGY [=] <replaceable class="parameter">strategy</replaceable> ] ]
+           [ STRATEGY [=] <replaceable class="parameter">strategy</replaceable> ]
            [ LOCALE [=] <replaceable class="parameter">locale</replaceable> ]
            [ LC_COLLATE [=] <replaceable class="parameter">lc_collate</replaceable> ]
            [ LC_CTYPE [=] <replaceable class="parameter">lc_ctype</replaceable> ]