@@ -10141,7 +10141,7 @@ table2-mapping
1014110141 Expands the object in <replaceable>from_json</replaceable> to a row whose columns match
1014210142 the record type defined by base. Conversion will be best
1014310143 effort; columns in base with no corresponding key in <replaceable>from_json</replaceable>
10144- will be left null. A columnmay only be specified once.
10144+ will be left null.If a columnis specified more than once, the last value is used .
1014510145 </entry>
1014610146 <entry><literal>select * from json_populate_record(null::x, '{"a":1,"b":2}')</literal></entry>
1014710147 <entry>
@@ -10164,8 +10164,8 @@ table2-mapping
1016410164 Expands the outermost set of objects in <replaceable>from_json</replaceable> to a set
1016510165 whose columns match the record type defined by base.
1016610166 Conversion will be best effort; columns in base with no
10167- corresponding key in <replaceable>from_json</replaceable> will be left null. A column
10168- may only be specified once.
10167+ corresponding key in <replaceable>from_json</replaceable> will be left null.
10168+ If a column is specifiedmore than once, the last value is used .
1016910169 </entry>
1017010170 <entry><literal>select * from json_populate_recordset(null::x, '[{"a":1,"b":2},{"a":3,"b":4}]')</literal></entry>
1017110171 <entry>