From ad829c307b5b4f466adf760b1a209840900ec2a5 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Tue, 31 May 2016 12:05:22 -0400 Subject: [PATCH] Fix typo in CREATE DATABASE syntax synopsis. Misplaced "]", evidently a thinko in commit 213335c14. --- doc/src/sgml/ref/create_database.sgml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ] ]