From: Tom Lane Date: Tue, 31 May 2016 16:05:22 +0000 (-0400) Subject: Fix typo in CREATE DATABASE syntax synopsis. X-Git-Tag: REL9_6_BETA2~132 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6d69ea33180263403f0377e420e4035105ef8627;p=postgresql Fix typo in CREATE DATABASE syntax synopsis. Misplaced "]", evidently a thinko in commit 213335c14. --- diff --git a/doc/src/sgml/ref/create_database.sgml b/doc/src/sgml/ref/create_database.sgml index 138996bedc..cf33746c1e 100644 --- a/doc/src/sgml/ref/create_database.sgml +++ b/doc/src/sgml/ref/create_database.sgml @@ -29,8 +29,8 @@ CREATE DATABASE name [ LC_CTYPE [=] lc_ctype ] [ TABLESPACE [=] tablespace_name ] [ ALLOW_CONNECTIONS [=] allowconn ] - [ CONNECTION LIMIT [=] connlimit ] ] - [ IS_TEMPLATE [=] istemplate ] + [ CONNECTION LIMIT [=] connlimit ] + [ IS_TEMPLATE [=] istemplate ] ]