diff options
author | Daniel Gustafsson <dgustafsson@postgresql.org> | 2024-02-08 12:19:34 +0100 |
---|---|---|
committer | Daniel Gustafsson <dgustafsson@postgresql.org> | 2024-02-08 12:19:34 +0100 |
commit | 27c3a41f3cfbfc3ab471fd85b4885d39f7c42ae6 (patch) | |
tree | 454eccb953d8491a6e31b31ceb8cd82c20600181 | |
parent | 496a1dc44bf1261053da9b3f7e430769754298b4 (diff) |
doc: Remove superfluous bracket in synopsis
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
-rw-r--r-- | doc/src/sgml/ref/create_database.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/ref/create_database.sgml b/doc/src/sgml/ref/create_database.sgml index ea38c647313..55414e4544b 100644 --- a/doc/src/sgml/ref/create_database.sgml +++ b/doc/src/sgml/ref/create_database.sgml @@ -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> ] |