diff --git a/doc/src/sgml/release-10.sgml b/doc/src/sgml/release-10.sgml
index d37f700055c..906b3814f7b 100644
--- a/doc/src/sgml/release-10.sgml
+++ b/doc/src/sgml/release-10.sgml
@@ -157,6 +157,32 @@
+
+ Use standard row constructor syntax in UPDATE ... SET
+ (column_list) = row_constructor
+ (Tom Lane)
+
+
+
+ The row_constructor can now begin with the
+ keyword ROW; previously that had to be omitted.
+ If just one column name appears in
+ the column_list, then
+ the row_constructor now must use
+ the ROW keyword, since otherwise it is not a valid
+ row constructor but just a parenthesized expression.
+ Also, an occurrence
+ of table_name.* within
+ the row_constructor is now expanded into
+ multiple columns, as occurs in other uses
+ of row_constructors.
+
+
+
+
+
@@ -1538,26 +1564,6 @@
-
- Allow standard row constructor syntax in UPDATE ... SET
- (column_list) = row_constructor
- (Tom Lane)
-
-
-
- The row_constructor can now begin with the
- keyword ROW; previously that had to be omitted. Also,
- an occurrence of table_name.*
- within the row_constructor is now expanded into
- multiple columns, as in other uses
- of row_constructors.
-
-
-
-
-