Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1nCkaq-0005Up-UJ for pgsql-docs@arkaria.postgresql.org; Wed, 26 Jan 2022 15:52:20 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.92) (envelope-from ) id 1nCkao-0007rC-9n for pgsql-docs@arkaria.postgresql.org; Wed, 26 Jan 2022 15:52:18 +0000 Received: from magus.postgresql.org ([2a02:c0:301:0:ffff::29]) by malur.postgresql.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1nCkao-0007r3-2Y for pgsql-docs@lists.postgresql.org; Wed, 26 Jan 2022 15:52:18 +0000 Received: from momjian.us ([72.94.173.45]) by magus.postgresql.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1nCkal-00035C-F6 for pgsql-docs@lists.postgresql.org; Wed, 26 Jan 2022 15:52:17 +0000 Received: from bruce by momjian.us with local (Exim 4.94.2) (envelope-from ) id 1nCkah-008SEn-LF; Wed, 26 Jan 2022 10:52:11 -0500 Date: Wed, 26 Jan 2022 10:52:11 -0500 From: Bruce Momjian To: Dave Stewart Cc: "David G. Johnston" , Tom Lane , Pg Docs Subject: Re: Conventions Message-ID: References: <164308146320.12460.3590769444508751574@wrigleys.postgresql.org> <2352062.1643156145@sss.pgh.pa.us> <2363194.1643163270@sss.pgh.pa.us> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="sQnnylJvDLeCA/7I" Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk --sQnnylJvDLeCA/7I Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit On Tue, Jan 25, 2022 at 06:45:47PM -0800, Dave Stewart wrote: > I'm good with it.  Thank you! OK, updated patch attached. I don't think we even show TCL syntax anywhere anymore, so I removed that text, rather than moving it. -- Bruce Momjian https://momjian.us EDB https://enterprisedb.com If only the physical world exists, free will is an illusion. --sQnnylJvDLeCA/7I Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="paren.diff" diff --git a/doc/src/sgml/notation.sgml b/doc/src/sgml/notation.sgml index bd1e8f629a..c3798d5f1b 100644 --- a/doc/src/sgml/notation.sgml +++ b/doc/src/sgml/notation.sgml @@ -6,12 +6,12 @@ The following conventions are used in the synopsis of a command: brackets ([ and ]) indicate - optional parts. (In the synopsis of a Tcl command, question marks - (?) are used instead, as is usual in Tcl.) Braces + optional parts. Braces ({ and }) and vertical lines (|) indicate that you must choose one alternative. Dots (...) mean that the preceding element - can be repeated. + can be repeated. All other symbols, including parentheses, should be + taken literally. --sQnnylJvDLeCA/7I--