@@ -53,7 +53,7 @@ static <TDocument> ClientInsertOneModel insertOne(final TDocument document) {
53
53
}
54
54
55
55
/**
56
- * Creates a model for updating at most one document that matches the {@code filter}.
56
+ * Creates a model for updating at most one document matching the {@code filter}.
57
57
* This method is functionally equivalent to {@link #updateOne(Bson, Bson, ClientUpdateOptions)}
58
58
* with the {@linkplain ClientUpdateOptions#clientUpdateOptions() default options}.
59
59
*
@@ -70,7 +70,7 @@ static ClientUpdateOneModel updateOne(final Bson filter, final Bson update) {
70
70
}
71
71
72
72
/**
73
- * Creates a model for updating at most one document that matches the {@code filter}.
73
+ * Creates a model for updating at most one document matching the {@code filter}.
74
74
*
75
75
* @param filter The filter.
76
76
* @param update The update.
@@ -87,7 +87,7 @@ static ClientUpdateOneModel updateOne(final Bson filter, final Bson update, fina
87
87
}
88
88
89
89
/**
90
- * Creates a model for updating at most one document that matches the {@code filter}.
90
+ * Creates a model for updating at most one document matching the {@code filter}.
91
91
* This method is functionally equivalent to {@link #updateOne(Bson, Iterable, ClientUpdateOptions)}
92
92
* with the {@linkplain ClientUpdateOptions#clientUpdateOptions() default options}.
93
93
*
@@ -104,7 +104,7 @@ static ClientUpdateOneModel updateOne(final Bson filter, final Iterable<? extend
104
104
}
105
105
106
106
/**
107
- * Creates a model for updating at most one document that matches the {@code filter}.
107
+ * Creates a model for updating at most one document matching the {@code filter}.
108
108
*
109
109
* @param filter The filter.
110
110
* @param updatePipeline The update pipeline.
@@ -121,7 +121,7 @@ static ClientUpdateOneModel updateOne(final Bson filter, final Iterable<? extend
121
121
}
122
122
123
123
/**
124
- * Creates a model for updating all documents that match the {@code filter}.
124
+ * Creates a model for updating all documents matching the {@code filter}.
125
125
* This method is functionally equivalent to {@link #updateMany(Bson, Bson, ClientUpdateOptions)}
126
126
* with the {@linkplain ClientUpdateOptions#clientUpdateOptions() default}.
127
127
*
@@ -138,7 +138,7 @@ static ClientUpdateManyModel updateMany(final Bson filter, final Bson update) {
138
138
}
139
139
140
140
/**
141
- * Creates a model for updating all documents that match the {@code filter}.
141
+ * Creates a model for updating all documents matching the {@code filter}.
142
142
*
143
143
* @param filter The filter.
144
144
* @param update The update.
@@ -155,7 +155,7 @@ static ClientUpdateManyModel updateMany(final Bson filter, final Bson update, fi
155
155
}
156
156
157
157
/**
158
- * Creates a model for updating all documents that match the {@code filter}.
158
+ * Creates a model for updating all documents matching the {@code filter}.
159
159
* This method is functionally equivalent to {@link #updateMany(Bson, Iterable, ClientUpdateOptions)}
160
160
* with the {@linkplain ClientUpdateOptions#clientUpdateOptions() default options}.
161
161
*
@@ -172,7 +172,7 @@ static ClientUpdateManyModel updateMany(final Bson filter, final Iterable<? exte
172
172
}
173
173
174
174
/**
175
- * Creates a model for updating all documents that match the {@code filter}.
175
+ * Creates a model for updating all documents matching the {@code filter}.
176
176
*
177
177
* @param filter The filter.
178
178
* @param updatePipeline The update pipeline.
@@ -189,7 +189,7 @@ static ClientUpdateManyModel updateMany(final Bson filter, final Iterable<? exte
189
189
}
190
190
191
191
/**
192
- * Creates a model for replacing at most one document that matches the {@code filter}.
192
+ * Creates a model for replacing at most one document matching the {@code filter}.
193
193
* This method is functionally equivalent to {@link #replaceOne(Bson, Object, ClientReplaceOptions)}
194
194
* with the {@linkplain ClientReplaceOptions#clientReplaceOptions() default options}.
195
195
*
@@ -207,7 +207,7 @@ static <TDocument> ClientReplaceOneModel replaceOne(final Bson filter, final TDo
207
207
}
208
208
209
209
/**
210
- * Creates a model for replacing at most one document that matches the {@code filter}.
210
+ * Creates a model for replacing at most one document matching the {@code filter}.
211
211
*
212
212
* @param filter The filter.
213
213
* @param replacement The replacement.
@@ -225,7 +225,7 @@ static <TDocument> ClientReplaceOneModel replaceOne(final Bson filter, final TDo
225
225
}
226
226
227
227
/**
228
- * Creates a model for removing at most one document that match the {@code filter}.
228
+ * Creates a model for removing at most one document matching the {@code filter}.
229
229
* This method is functionally equivalent to {@link #deleteOne(Bson, ClientDeleteOptions)}
230
230
* with the {@linkplain ClientDeleteOptions#clientDeleteOptions() default options}.
231
231
*
@@ -239,7 +239,7 @@ static ClientDeleteOneModel deleteOne(final Bson filter) {
239
239
}
240
240
241
241
/**
242
- * Creates a model for removing at most one document that match the {@code filter}.
242
+ * Creates a model for removing at most one document matching the {@code filter}.
243
243
*
244
244
* @param filter The filter.
245
245
* @param options The options.
@@ -253,7 +253,7 @@ static ClientDeleteOneModel deleteOne(final Bson filter, final ClientDeleteOptio
253
253
}
254
254
255
255
/**
256
- * Creates a model for removing all documents that match the {@code filter}.
256
+ * Creates a model for removing all documents matching the {@code filter}.
257
257
* This method is functionally equivalent to {@link #deleteMany(Bson, ClientDeleteOptions)}
258
258
* with the {@linkplain ClientDeleteOptions#clientDeleteOptions() default options}.
259
259
*
@@ -267,7 +267,7 @@ static ClientDeleteManyModel deleteMany(final Bson filter) {
267
267
}
268
268
269
269
/**
270
- * Creates a model for removing all documents that match the {@code filter}.
270
+ * Creates a model for removing all documents matching the {@code filter}.
271
271
*
272
272
* @param filter The filter.
273
273
* @param options The options.
0 commit comments