diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index 489184a4f04..5804069e6a3 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -19007,7 +19007,7 @@ SELECT JSON_VALUE(jsonb '[1,2]', 'strict $[*]' DEFAULT 1 ON ERROR); Defines whether to wrap a returned sequence of SQL/JSON - items into a SQL/JSON array. + items into an SQL/JSON array. @@ -19819,7 +19819,7 @@ JSON_SERIALIZE ( Description - The JSON_SERIALIZE function transforms a SQL/JSON value + The JSON_SERIALIZE function transforms an SQL/JSON value into a character or binary string. diff --git a/doc/src/sgml/ref/select.sgml b/doc/src/sgml/ref/select.sgml index 16bbab52c3e..8e5b83dfded 100644 --- a/doc/src/sgml/ref/select.sgml +++ b/doc/src/sgml/ref/select.sgml @@ -1715,7 +1715,7 @@ SELECT * FROM (SELECT * FROM mytable FOR UPDATE) ss ORDER BY column1; At the REPEATABLE READ or SERIALIZABLE transaction isolation level this would cause a serialization failure (with - a SQLSTATE of '40001'), so there is + an SQLSTATE of '40001'), so there is no possibility of receiving rows out of order under these isolation levels. diff --git a/doc/src/sgml/xfunc.sgml b/doc/src/sgml/xfunc.sgml index a34723030b0..fb8255f136e 100644 --- a/doc/src/sgml/xfunc.sgml +++ b/doc/src/sgml/xfunc.sgml @@ -445,7 +445,7 @@ $$ LANGUAGE SQL; If the final SELECT or RETURNING - clause in a SQL function does not return exactly + clause in an SQL function does not return exactly the function's declared result type, PostgreSQL will automatically cast the value to the required type, if that is possible with an implicit