Skip to content

Commit 6828309

Browse files
committed
CDRIVER-1573 Rename bulk_operation_[update|remove]_with_opts to bulk_operation_[update|remove]_many_with_opts
1 parent b953656 commit 6828309

14 files changed

+47
-47
lines changed

doc/mongoc_bulk_operation_delete.page

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ mongoc_bulk_operation_delete (mongoc_bulk_operation_t *bulk,
3838

3939
<section id="seealso">
4040
<title>See Also</title>
41-
<p><code xref="mongoc_bulk_operation_remove_with_opts">mongoc_bulk_operation_remove_with_opts()</code></p>
41+
<p><code xref="mongoc_bulk_operation_remove_many_with_opts">mongoc_bulk_operation_remove_many_with_opts()</code></p>
4242
<p><code xref="mongoc_bulk_operation_remove_one_with_opts">mongoc_bulk_operation_remove_one_with_opts()</code></p>
4343
</section>
4444

doc/mongoc_bulk_operation_delete_one.page

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ mongoc_bulk_operation_delete_one (mongoc_bulk_operation_t *bulk,
3939
<section id="seealso">
4040
<title>See Also</title>
4141
<p><code xref="mongoc_bulk_operation_remove_one_with_opts">mongoc_bulk_operation_remove_one_with_opts()</code></p>
42-
<p><code xref="mongoc_bulk_operation_remove_with_opts">mongoc_bulk_operation_remove_with_opts()</code></p>
42+
<p><code xref="mongoc_bulk_operation_remove_many_with_opts">mongoc_bulk_operation_remove_many_with_opts()</code></p>
4343
</section>
4444

4545
<section id="errors">

doc/mongoc_bulk_operation_remove.page

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ mongoc_bulk_operation_remove (mongoc_bulk_operation_t *bulk,
3131
<title>See Also</title>
3232
<p><code xref="mongoc_bulk_operation_remove_one">mongoc_bulk_operation_remove_one()</code></p>
3333
<p><code xref="mongoc_bulk_operation_remove_one_with_opts">mongoc_bulk_operation_remove_one_with_opts()</code></p>
34-
<p><code xref="mongoc_bulk_operation_remove_with_opts">mongoc_bulk_operation_remove_with_opts()</code></p>
34+
<p><code xref="mongoc_bulk_operation_remove_many_with_opts">mongoc_bulk_operation_remove_many_with_opts()</code></p>
3535
</section>
3636

3737
<section id="errors">

doc/mongoc_bulk_operation_remove_one.page

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ mongoc_bulk_operation_remove_one (mongoc_bulk_operation_t *bulk,
3030
<section id="seealso">
3131
<title>See Also</title>
3232
<p><code xref="mongoc_bulk_operation_remove_one_with_opts">mongoc_bulk_operation_remove_one_with_opts()</code></p>
33-
<p><code xref="mongoc_bulk_operation_remove_with_opts">mongoc_bulk_operation_remove_with_opts()</code></p>
33+
<p><code xref="mongoc_bulk_operation_remove_many_with_opts">mongoc_bulk_operation_remove_many_with_opts()</code></p>
3434
</section>
3535

3636
<section id="errors">

doc/mongoc_bulk_operation_remove_one_with_opts.page

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ mongoc_bulk_operation_remove_one_with_opts (mongoc_bulk_operation_t *bulk,
3434
<section id="seealso">
3535
<title>See Also</title>
3636
<p><code xref="mongoc_bulk_operation_remove_one">mongoc_bulk_operation_remove_one()</code></p>
37-
<p><code xref="mongoc_bulk_operation_remove_with_opts">mongoc_bulk_operation_remove_with_opts()</code></p>
37+
<p><code xref="mongoc_bulk_operation_remove_many_with_opts">mongoc_bulk_operation_remove_many_with_opts()</code></p>
3838
</section>
3939

4040
<section id="errors">

doc/mongoc_bulk_operation_remove_with_opts.page

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@
44
style="function"
55
xmlns:api="http://projectmallard.org/experimental/api/"
66
xmlns:ui="http://projectmallard.org/experimental/ui/"
7-
id="mongoc_bulk_operation_remove_with_opts">
7+
id="mongoc_bulk_operation_remove_many_with_opts">
88
<info>
99
<link type="guide" xref="mongoc_bulk_operation_t" group="function"/>
1010
</info>
11-
<title>mongoc_bulk_operation_remove_with_opts()</title>
11+
<title>mongoc_bulk_operation_remove_many_with_opts()</title>
1212

1313
<section id="synopsis">
1414
<title>Synopsis</title>
1515
<synopsis><code mime="text/x-csrc"><![CDATA[bool
16-
mongoc_bulk_operation_remove_with_opts (mongoc_bulk_operation_t *bulk,
17-
const bson_t *selector,
18-
const bson_t *opts,
19-
bson_error_t *error); /* OUT */
16+
mongoc_bulk_operation_remove_many_with_opts (mongoc_bulk_operation_t *bulk,
17+
const bson_t *selector,
18+
const bson_t *opts,
19+
bson_error_t *error); /* OUT */
2020
]]></code></synopsis>
2121
<p>Delete documents as part of a bulk operation. This only queues the operation. To execute it, call <code xref="mongoc_bulk_operation_execute">mongoc_bulk_operation_execute()</code>.</p>
2222
</section>

doc/mongoc_bulk_operation_replace_one_with_opts.page

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ mongoc_bulk_operation_replace_one_with_opts (mongoc_bulk_operation_t *bulk
3939

4040
<section id="seealso">
4141
<title>See Also</title>
42-
<p><code xref="mongoc_bulk_operation_remove_with_opts">mongoc_bulk_operation_remove_with_opts()</code></p>
42+
<p><code xref="mongoc_bulk_operation_remove_many_with_opts">mongoc_bulk_operation_remove_many_with_opts()</code></p>
4343
<p><code xref="mongoc_bulk_operation_insert_with_opts">mongoc_bulk_operation_insert_with_opts()</code></p>
4444
</section>
4545

doc/mongoc_bulk_operation_update.page

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ mongoc_bulk_operation_update (mongoc_bulk_operation_t *bulk,
3636
<section id="seealso">
3737
<title>See Also</title>
3838
<p><code xref="mongoc_bulk_operation_update_one">mongoc_bulk_operation_update_one()</code></p>
39-
<p><code xref="mongoc_bulk_operation_update_with_opts">mongoc_bulk_operation_update_with_opts()</code></p>
39+
<p><code xref="mongoc_bulk_operation_update_many_with_opts">mongoc_bulk_operation_update_many_with_opts()</code></p>
4040
</section>
4141

4242
<section id="errors">

doc/mongoc_bulk_operation_update_one_with_opts.page

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ mongoc_bulk_operation_update_one_with_opts (mongoc_bulk_operation_t *bulk,
3939

4040
<section id="seealso">
4141
<title>See Also</title>
42-
<p><code xref="mongoc_bulk_operation_update">mongoc_bulk_operation_update_with_opts()</code></p>
42+
<p><code xref="mongoc_bulk_operation_update">mongoc_bulk_operation_update_many_with_opts()</code></p>
4343
</section>
4444

4545
<section id="errors">

doc/mongoc_bulk_operation_update_with_opts.page

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,21 @@
44
style="function"
55
xmlns:api="http://projectmallard.org/experimental/api/"
66
xmlns:ui="http://projectmallard.org/experimental/ui/"
7-
id="mongoc_bulk_operation_update_with_opts">
7+
id="mongoc_bulk_operation_update_many_with_opts">
88

99
<info>
1010
<link type="guide" xref="mongoc_bulk_operation_t" group="function"/>
1111
</info>
12-
<title>mongoc_bulk_operation_update_with_opts()</title>
12+
<title>mongoc_bulk_operation_update_many_with_opts()</title>
1313

1414
<section id="synopsis">
1515
<title>Synopsis</title>
1616
<synopsis><code mime="text/x-csrc"><![CDATA[bool
17-
mongoc_bulk_operation_update_with_opts (mongoc_bulk_operation_t *bulk,
18-
const bson_t *selector,
19-
const bson_t *document,
20-
const bson_t *opts,
21-
bson_error_t *error); /* OUT */
17+
mongoc_bulk_operation_update_many_with_opts (mongoc_bulk_operation_t *bulk,
18+
const bson_t *selector,
19+
const bson_t *document,
20+
const bson_t *opts,
21+
bson_error_t *error); /* OUT */
2222
]]></code></synopsis>
2323
<p>This function queues an update as part of a bulk operation. This does not execute the operation. To execute the entirety of the bulk operation call <code xref="mongoc_bulk_operation_execute">mongoc_bulk_operation_execute()</code>.</p>
2424
<note style="warning"><p><code>document</code> MUST only contain fields whose key starts with <code>$</code>. See the update document specification for more details.</p></note>

0 commit comments

Comments
 (0)