Skip to content

Commit 695c160

Browse files
committed
Refer to individual write operations without "bulk"
1 parent 57271a9 commit 695c160

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

src/mongocxx/include/mongocxx/v1/bulk_write.hpp

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ namespace v1 {
3131
class bulk_write {
3232
public:
3333
///
34-
/// Enumeration identifying the type of a bulk write operation.
34+
/// Enumeration identifying the type of a write operation.
3535
///
3636
enum class type {};
3737

3838
///
39-
/// A single "Insert One" bulk write operation.
39+
/// A single "Insert One" write operation.
4040
///
4141
/// @see
4242
/// - [Bulk Write Operations (MongoDB Manual)](https://www.mongodb.com/docs/manual/core/bulk-write-operations/)
@@ -46,7 +46,7 @@ class bulk_write {
4646
class insert_one {};
4747

4848
///
49-
/// A single "Update One" bulk write operation.
49+
/// A single "Update One" write operation.
5050
///
5151
/// @see
5252
/// - [Bulk Write Operations (MongoDB Manual)](https://www.mongodb.com/docs/manual/core/bulk-write-operations/)
@@ -56,7 +56,7 @@ class bulk_write {
5656
class update_one {};
5757

5858
///
59-
/// A single "Update Many" bulk write operation.
59+
/// A single "Update Many" write operation.
6060
///
6161
/// @see
6262
/// - [Bulk Write Operations (MongoDB Manual)](https://www.mongodb.com/docs/manual/core/bulk-write-operations/)
@@ -66,7 +66,7 @@ class bulk_write {
6666
class update_many {};
6767

6868
///
69-
/// A single "Replace One" bulk write operation.
69+
/// A single "Replace One" write operation.
7070
///
7171
/// @see
7272
/// - [Bulk Write Operations (MongoDB Manual)](https://www.mongodb.com/docs/manual/core/bulk-write-operations/)
@@ -76,7 +76,7 @@ class bulk_write {
7676
class replace_one {};
7777

7878
///
79-
/// A single "Delete One" bulk write operation.
79+
/// A single "Delete One" write operation.
8080
///
8181
/// @see
8282
/// - [Bulk Write Operations (MongoDB Manual)](https://www.mongodb.com/docs/manual/core/bulk-write-operations/)
@@ -86,7 +86,7 @@ class bulk_write {
8686
class delete_one {};
8787

8888
///
89-
/// A single "Delete Many" bulk write operation.
89+
/// A single "Delete Many" write operation.
9090
///
9191
/// @see
9292
/// - [Bulk Write Operations (MongoDB Manual)](https://www.mongodb.com/docs/manual/core/bulk-write-operations/)
@@ -96,7 +96,7 @@ class bulk_write {
9696
class delete_many {};
9797

9898
///
99-
/// A single bulk write operation.
99+
/// A single write operation.
100100
///
101101
/// @see
102102
/// - [Bulk Write Operations (MongoDB Manual)](https://www.mongodb.com/docs/manual/core/bulk-write-operations/)
@@ -107,7 +107,7 @@ class bulk_write {
107107
class single {};
108108

109109
///
110-
/// Options for a bulk write operation.
110+
/// Options for a write operation.
111111
///
112112
/// @see
113113
/// - [Bulk Write Operations (MongoDB Manual)](https://www.mongodb.com/docs/manual/core/bulk-write-operations/)
@@ -118,7 +118,7 @@ class bulk_write {
118118
class options {};
119119

120120
///
121-
/// The result of a bulk write operation.
121+
/// The result of a write operation.
122122
///
123123
/// @see
124124
/// - [Bulk Write Operations (MongoDB Manual)](https://www.mongodb.com/docs/manual/core/bulk-write-operations/)
@@ -134,5 +134,5 @@ class bulk_write {
134134

135135
///
136136
/// @file
137-
/// Provides entities related to bulk write operations.
137+
/// Provides entities related to write operations.
138138
///

0 commit comments

Comments
 (0)