From: Daniel Gustafsson Date: Thu, 8 Feb 2024 11:19:34 +0000 (+0100) Subject: doc: Remove superfluous bracket in synopsis X-Git-Tag: REL_17_BETA1~919 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fdfb92c0307c95eba10854196628d88e6708901e;p=thirdparty%2Fpostgresql.git 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 --- diff --git a/doc/src/sgml/ref/create_database.sgml b/doc/src/sgml/ref/create_database.sgml index ce7317f81ba..72927960ebb 100644 --- a/doc/src/sgml/ref/create_database.sgml +++ b/doc/src/sgml/ref/create_database.sgml @@ -25,7 +25,7 @@ CREATE DATABASE name [ WITH ] [ OWNER [=] user_name ] [ TEMPLATE [=] template ] [ ENCODING [=] encoding ] - [ STRATEGY [=] strategy ] ] + [ STRATEGY [=] strategy ] [ LOCALE [=] locale ] [ LC_COLLATE [=] lc_collate ] [ LC_CTYPE [=] lc_ctype ]