@@ -11933,18 +11933,18 @@ table2-mapping
1193311933 <entry><literal>[{"f1":1},2,null,3]</literal></entry>
1193411934 </row>
1193511935 <row>
11936- <entry><para><literal>jsonb_set(target jsonb, path text[], new_value jsonb<optional>,<parameter> create_missing</parameter> <type> boolean</type> </optional>)</literal>
11936+ <entry><para><literal>jsonb_set(target jsonb, path text[], new_value jsonb <optional>, create_missing boolean</optional>)</literal>
1193711937 </para></entry>
1193811938 <entry><para><type>jsonb</type></para></entry>
1193911939 <entry>
1194011940 Returns <replaceable>target</replaceable>
1194111941 with the section designated by <replaceable>path</replaceable>
1194211942 replaced by <replaceable>new_value</replaceable>, or with
1194311943 <replaceable>new_value</replaceable> added if
11944- <replaceable>create_missing</replaceable> is true ( default is
11944+ <replaceable>create_missing</replaceable> is true (default is
1194511945 <literal>true</literal>) and the item
1194611946 designated by <replaceable>path</replaceable> does not exist.
11947- As with the pathorientated operators, negative integers that
11947+ As with the pathoriented operators, negative integers that
1194811948 appear in <replaceable>path</replaceable> count from the end
1194911949 of JSON arrays.
1195011950 </entry>
@@ -11958,7 +11958,7 @@ table2-mapping
1195811958 <row>
1195911959 <entry>
1196011960 <para><literal>
11961- jsonb_insert(target jsonb, path text[], new_value jsonb, <optional><parameter> insert_after</parameter> <type> boolean</type> </optional>)
11961+ jsonb_insert(target jsonb, path text[], new_value jsonb <optional>, insert_after boolean</optional>)
1196211962 </literal></para>
1196311963 </entry>
1196411964 <entry><para><type>jsonb</type></para></entry>
@@ -11973,7 +11973,7 @@ table2-mapping
1197311973 designated by <replaceable>path</replaceable> is in JSONB object,
1197411974 <replaceable>new_value</replaceable> will be inserted only if
1197511975 <replaceable>target</replaceable> does not exist. As with the path
11976- orientated operators, negative integers that appear in
11976+ oriented operators, negative integers that appear in
1197711977 <replaceable>path</replaceable> count from the end of JSON arrays.
1197811978 </entry>
1197911979 <entry>