@@ -31,12 +31,12 @@ namespace v1 {
31
31
class bulk_write {
32
32
public:
33
33
// /
34
- // / Enumeration identifying the type of a bulk write operation.
34
+ // / Enumeration identifying the type of a write operation.
35
35
// /
36
36
enum class type {};
37
37
38
38
// /
39
- // / A single "Insert One" bulk write operation.
39
+ // / A single "Insert One" write operation.
40
40
// /
41
41
// / @see
42
42
// / - [Bulk Write Operations (MongoDB Manual)](https://www.mongodb.com/docs/manual/core/bulk-write-operations/)
@@ -46,7 +46,7 @@ class bulk_write {
46
46
class insert_one {};
47
47
48
48
// /
49
- // / A single "Update One" bulk write operation.
49
+ // / A single "Update One" write operation.
50
50
// /
51
51
// / @see
52
52
// / - [Bulk Write Operations (MongoDB Manual)](https://www.mongodb.com/docs/manual/core/bulk-write-operations/)
@@ -56,7 +56,7 @@ class bulk_write {
56
56
class update_one {};
57
57
58
58
// /
59
- // / A single "Update Many" bulk write operation.
59
+ // / A single "Update Many" write operation.
60
60
// /
61
61
// / @see
62
62
// / - [Bulk Write Operations (MongoDB Manual)](https://www.mongodb.com/docs/manual/core/bulk-write-operations/)
@@ -66,7 +66,7 @@ class bulk_write {
66
66
class update_many {};
67
67
68
68
// /
69
- // / A single "Replace One" bulk write operation.
69
+ // / A single "Replace One" write operation.
70
70
// /
71
71
// / @see
72
72
// / - [Bulk Write Operations (MongoDB Manual)](https://www.mongodb.com/docs/manual/core/bulk-write-operations/)
@@ -76,7 +76,7 @@ class bulk_write {
76
76
class replace_one {};
77
77
78
78
// /
79
- // / A single "Delete One" bulk write operation.
79
+ // / A single "Delete One" write operation.
80
80
// /
81
81
// / @see
82
82
// / - [Bulk Write Operations (MongoDB Manual)](https://www.mongodb.com/docs/manual/core/bulk-write-operations/)
@@ -86,7 +86,7 @@ class bulk_write {
86
86
class delete_one {};
87
87
88
88
// /
89
- // / A single "Delete Many" bulk write operation.
89
+ // / A single "Delete Many" write operation.
90
90
// /
91
91
// / @see
92
92
// / - [Bulk Write Operations (MongoDB Manual)](https://www.mongodb.com/docs/manual/core/bulk-write-operations/)
@@ -96,7 +96,7 @@ class bulk_write {
96
96
class delete_many {};
97
97
98
98
// /
99
- // / A single bulk write operation.
99
+ // / A single write operation.
100
100
// /
101
101
// / @see
102
102
// / - [Bulk Write Operations (MongoDB Manual)](https://www.mongodb.com/docs/manual/core/bulk-write-operations/)
@@ -107,7 +107,7 @@ class bulk_write {
107
107
class single {};
108
108
109
109
// /
110
- // / Options for a bulk write operation.
110
+ // / Options for a write operation.
111
111
// /
112
112
// / @see
113
113
// / - [Bulk Write Operations (MongoDB Manual)](https://www.mongodb.com/docs/manual/core/bulk-write-operations/)
@@ -118,7 +118,7 @@ class bulk_write {
118
118
class options {};
119
119
120
120
// /
121
- // / The result of a bulk write operation.
121
+ // / The result of a write operation.
122
122
// /
123
123
// / @see
124
124
// / - [Bulk Write Operations (MongoDB Manual)](https://www.mongodb.com/docs/manual/core/bulk-write-operations/)
@@ -134,5 +134,5 @@ class bulk_write {
134
134
135
135
// /
136
136
// / @file
137
- // / Provides entities related to bulk write operations.
137
+ // / Provides entities related to write operations.
138
138
// /
0 commit comments