@@ -11791,18 +11791,18 @@ table2-mapping
11791
11791
<entry><literal>[{"f1":1},2,null,3]</literal></entry>
11792
11792
</row>
11793
11793
<row>
11794
- <entry><para><literal>jsonb_set(target jsonb, path text[], new_value jsonb<optional>,<parameter> create_missing</parameter> <type> boolean</type> </optional>)</literal>
11794
+ <entry><para><literal>jsonb_set(target jsonb, path text[], new_value jsonb <optional>, create_missing boolean</optional>)</literal>
11795
11795
</para></entry>
11796
11796
<entry><para><type>jsonb</type></para></entry>
11797
11797
<entry>
11798
11798
Returns <replaceable>target</replaceable>
11799
11799
with the section designated by <replaceable>path</replaceable>
11800
11800
replaced by <replaceable>new_value</replaceable>, or with
11801
11801
<replaceable>new_value</replaceable> added if
11802
- <replaceable>create_missing</replaceable> is true ( default is
11802
+ <replaceable>create_missing</replaceable> is true (default is
11803
11803
<literal>true</>) and the item
11804
11804
designated by <replaceable>path</replaceable> does not exist.
11805
- As with the pathorientated operators, negative integers that
11805
+ As with the pathoriented operators, negative integers that
11806
11806
appear in <replaceable>path</replaceable> count from the end
11807
11807
of JSON arrays.
11808
11808
</entry>
@@ -11816,7 +11816,7 @@ table2-mapping
11816
11816
<row>
11817
11817
<entry>
11818
11818
<para><literal>
11819
- jsonb_insert(target jsonb, path text[], new_value jsonb, <optional><parameter> insert_after</parameter> <type> boolean</type> </optional>)
11819
+ jsonb_insert(target jsonb, path text[], new_value jsonb <optional>, insert_after boolean</optional>)
11820
11820
</literal></para>
11821
11821
</entry>
11822
11822
<entry><para><type>jsonb</type></para></entry>
@@ -11831,7 +11831,7 @@ table2-mapping
11831
11831
designated by <replaceable>path</replaceable> is in JSONB object,
11832
11832
<replaceable>new_value</replaceable> will be inserted only if
11833
11833
<replaceable>target</replaceable> does not exist. As with the path
11834
- orientated operators, negative integers that appear in
11834
+ oriented operators, negative integers that appear in
11835
11835
<replaceable>path</replaceable> count from the end of JSON arrays.
11836
11836
</entry>
11837
11837
<entry>