Skip to content

Commit 7bdd489

Browse files
committed
Doc: use "an SQL" consistently rather than "a SQL"
Similarly to what was done in 04539e7, we standardized on SQL being pronounced "es-que-ell" rather than "sequel" in our documentation. Two inconsistencies have crept in during the v15 cycle. The others existed before but were missed in 04539e7 due to none of the searches accounting for "SQL" being wrapped in tags. As with 04539e7, we don't touch code comments here in order to not create unnecessary back-patching pain. Discussion: https://postgr.es/m/CAApHDvpML27UqFXnrYO1MJddsKVMQoiZisPvsAGhKE_tsKXquw%40mail.gmail.com
1 parent 344a225 commit 7bdd489

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

doc/src/sgml/func.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19007,7 +19007,7 @@ SELECT JSON_VALUE(jsonb '[1,2]', 'strict $[*]' DEFAULT 1 ON ERROR);
1900719007
<listitem>
1900819008
<para>
1900919009
Defines whether to wrap a returned sequence of <acronym>SQL/JSON</acronym>
19010-
items into a <acronym>SQL/JSON</acronym> array.
19010+
items into an <acronym>SQL/JSON</acronym> array.
1901119011
</para>
1901219012
<variablelist>
1901319013
<varlistentry>
@@ -19819,7 +19819,7 @@ JSON_SERIALIZE (
1981919819
<title>Description</title>
1982019820

1982119821
<para>
19822-
The <function>JSON_SERIALIZE</function> function transforms a SQL/JSON value
19822+
The <function>JSON_SERIALIZE</function> function transforms an SQL/JSON value
1982319823
into a character or binary string.
1982419824
</para>
1982519825
</sect5>

doc/src/sgml/ref/select.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1715,7 +1715,7 @@ SELECT * FROM (SELECT * FROM mytable FOR UPDATE) ss ORDER BY column1;
17151715
<para>
17161716
At the <literal>REPEATABLE READ</literal> or <literal>SERIALIZABLE</literal>
17171717
transaction isolation level this would cause a serialization failure (with
1718-
a <literal>SQLSTATE</literal> of <literal>'40001'</literal>), so there is
1718+
an <literal>SQLSTATE</literal> of <literal>'40001'</literal>), so there is
17191719
no possibility of receiving rows out of order under these isolation levels.
17201720
</para>
17211721
</caution>

doc/src/sgml/xfunc.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ $$ LANGUAGE SQL;
445445

446446
<para>
447447
If the final <literal>SELECT</literal> or <literal>RETURNING</literal>
448-
clause in a <acronym>SQL</acronym> function does not return exactly
448+
clause in an <acronym>SQL</acronym> function does not return exactly
449449
the function's declared result
450450
type, <productname>PostgreSQL</productname> will automatically cast
451451
the value to the required type, if that is possible with an implicit

0 commit comments

Comments
 (0)