@@ -124,7 +124,7 @@ class MONGOCXX_API collection {
124124 // / the cursor throws mongocxx::query_exception when the returned cursor
125125 // / is iterated.
126126 // /
127- // / @see http ://docs.mongodb.org/manual /reference/command/aggregate/
127+ // / @see https ://docs.mongodb.com/master /reference/command/aggregate/
128128 // /
129129 // / @note
130130 // / In order to pass a read or write concern to this, you must use the
@@ -154,7 +154,7 @@ class MONGOCXX_API collection {
154154 // / @throws mongocxx::bulk_write_exception when there are errors processing the writes.
155155 // /
156156 // / @see mongocxx::bulk_write
157- // / @see http ://docs.mongodb.org/manual /core/bulk-write-operations/
157+ // / @see https ://docs.mongodb.com/master /core/bulk-write-operations/
158158 // /
159159 template <typename container_type>
160160 MONGOCXX_INLINE stdx::optional<result::bulk_write> bulk_write (
@@ -180,7 +180,7 @@ class MONGOCXX_API collection {
180180 // / @throws mongocxx::bulk_write_exception when there are errors processing the writes.
181181 // /
182182 // / @see mongocxx::bulk_write
183- // / @see http ://docs.mongodb.org/manual /core/bulk-write-operations/
183+ // / @see https ://docs.mongodb.com/master /core/bulk-write-operations/
184184 // /
185185 template <typename write_model_iterator_type>
186186 MONGOCXX_INLINE stdx::optional<result::bulk_write> bulk_write (
@@ -197,7 +197,7 @@ class MONGOCXX_API collection {
197197 // /
198198 // / @throws mongocxx::bulk_write_exception when there are errors processing the writes.
199199 // /
200- // / @see http ://docs.mongodb.org/manual /core/bulk-write-operations/
200+ // / @see https ://docs.mongodb.com/master /core/bulk-write-operations/
201201 // /
202202 stdx::optional<result::bulk_write> bulk_write (const class bulk_write & bulk_write);
203203
@@ -213,7 +213,7 @@ class MONGOCXX_API collection {
213213 // /
214214 // / @throws mongocxx::query_exception if the count operation fails.
215215 // /
216- // / @see http ://docs.mongodb.org/manual /reference/command/count/
216+ // / @see https ://docs.mongodb.com/master /reference/command/count/
217217 // /
218218 std::int64_t count (bsoncxx::document::view_or_value filter,
219219 const options::count& options = options::count());
@@ -229,7 +229,7 @@ class MONGOCXX_API collection {
229229 // / @throws mongocxx::logic_error if the options are invalid.
230230 // / @throws mongocxx::operation_exception if index creation fails.
231231 // /
232- // / @see http ://docs.mongodb.org/manual /reference/method/db.collection.createIndex/
232+ // / @see https ://docs.mongodb.com/master /reference/method/db.collection.createIndex/
233233 // /
234234 // / @note
235235 // / In order to pass a write concern to this, you must use the collection
@@ -253,7 +253,7 @@ class MONGOCXX_API collection {
253253 // /
254254 // / @throws mongocxx::bulk_write_exception if the delete fails.
255255 // /
256- // / @see http ://docs.mongodb.org/manual /reference/command/delete/
256+ // / @see https ://docs.mongodb.com/master /reference/command/delete/
257257 // /
258258 stdx::optional<result::delete_result> delete_many (
259259 bsoncxx::document::view_or_value filter,
@@ -273,7 +273,7 @@ class MONGOCXX_API collection {
273273 // /
274274 // / @throws mongocxx::bulk_write_exception if the delete fails.
275275 // /
276- // / @see http ://docs.mongodb.org/manual /reference/command/delete/
276+ // / @see https ://docs.mongodb.com/master /reference/command/delete/
277277 // /
278278 stdx::optional<result::delete_result> delete_one (
279279 bsoncxx::document::view_or_value filter,
@@ -293,7 +293,7 @@ class MONGOCXX_API collection {
293293 // / field. If the operation fails, the cursor throws
294294 // / mongocxx::query_exception when the returned cursor is iterated.
295295
296- // / @see http ://docs.mongodb.org/manual /reference/command/distinct/
296+ // / @see https ://docs.mongodb.com/master /reference/command/distinct/
297297 // /
298298 cursor distinct (bsoncxx::string::view_or_value name, bsoncxx::document::view_or_value filter,
299299 const options::distinct& options = options::distinct());
@@ -302,7 +302,7 @@ class MONGOCXX_API collection {
302302 // /
303303 // / @throws mongocxx::operation_exception if the operation fails.
304304 // /
305- // / @see http ://docs.mongodb.org/manual /reference/method/db.collection.drop/
305+ // / @see https ://docs.mongodb.com/master /reference/method/db.collection.drop/
306306 // /
307307 // / @note
308308 // / In order to pass a write concern to this, you must use the collection
@@ -326,7 +326,7 @@ class MONGOCXX_API collection {
326326 // / @throws mongocxx::logic_error if the options are invalid, or if the unsupported option
327327 // / modifiers "$query" or "$explain" are used.
328328 // /
329- // / @see http ://docs.mongodb.org/manual /core/read-operations-introduction/
329+ // / @see https ://docs.mongodb.com/master /core/read-operations-introduction/
330330 // /
331331 cursor find (bsoncxx::document::view_or_value filter,
332332 const options::find& options = options::find());
@@ -343,7 +343,7 @@ class MONGOCXX_API collection {
343343 // /
344344 // / @throws mongocxx::query_exception if the operation fails.
345345 // /
346- // / @see http ://docs.mongodb.org/manual /core/read-operations-introduction/
346+ // / @see https ://docs.mongodb.com/master /core/read-operations-introduction/
347347 // /
348348 stdx::optional<bsoncxx::document::value> find_one (
349349 bsoncxx::document::view_or_value filter, const options::find& options = options::find());
@@ -496,7 +496,7 @@ class MONGOCXX_API collection {
496496 // /
497497 // / @throws mongocxx::operation_exception if the operation fails.
498498 // /
499- // / @see http ://docs.mongodb.org/manual /reference/command/listIndexes/
499+ // / @see https ://docs.mongodb.com/master /reference/command/listIndexes/
500500 // /
501501 cursor list_indexes () const ;
502502
@@ -516,7 +516,7 @@ class MONGOCXX_API collection {
516516 // /
517517 // / @throws mongocxx::operation_exception if the operation fails.
518518 // /
519- // / @see https://docs.mongodb.org/manual /reference/command/renameCollection/
519+ // / @see https://docs.mongodb.com/master /reference/command/renameCollection/
520520 // /
521521 // / @note
522522 // / In order to pass a write concern to this, you must use the collection
@@ -532,7 +532,7 @@ class MONGOCXX_API collection {
532532 // / @param rc
533533 // / The new @c read_concern
534534 // /
535- // / @see https://docs.mongodb.org/manual /reference/read-concern/
535+ // / @see https://docs.mongodb.com/master /reference/read-concern/
536536 // /
537537 void read_concern (class read_concern rc);
538538
@@ -553,7 +553,7 @@ class MONGOCXX_API collection {
553553 // / @param rp
554554 // / The read_preference to set.
555555 // /
556- // / @see http ://docs.mongodb.org/manual /core/read-preference/
556+ // / @see https ://docs.mongodb.com/master /core/read-preference/
557557 // /
558558 void read_preference (class read_preference rp);
559559
@@ -562,7 +562,7 @@ class MONGOCXX_API collection {
562562 // /
563563 // / @return The current read_preference.
564564 // /
565- // / @see http ://docs.mongodb.org/manual /core/read-preference/
565+ // / @see https ://docs.mongodb.com/master /core/read-preference/
566566 // /
567567 class read_preference read_preference () const ;
568568
@@ -584,7 +584,7 @@ class MONGOCXX_API collection {
584584 // / mongocxx::logic_error if the replacement is invalid, or mongocxx::bulk_write_exception if
585585 // / the operation fails.
586586 // /
587- // / @see http ://docs.mongodb.org/manual /reference/command/update/
587+ // / @see https ://docs.mongodb.com/master /reference/command/update/
588588 // /
589589 stdx::optional<result::replace_one> replace_one (
590590 bsoncxx::document::view_or_value filter, bsoncxx::document::view_or_value replacement,
@@ -608,7 +608,7 @@ class MONGOCXX_API collection {
608608 // / mongocxx::logic_error if the update is invalid, or mongocxx::bulk_write_exception if the
609609 // / operation fails.
610610 // /
611- // / @see http ://docs.mongodb.org/manual /reference/command/update/
611+ // / @see https ://docs.mongodb.com/master /reference/command/update/
612612 // /
613613 stdx::optional<result::update> update_many (bsoncxx::document::view_or_value filter,
614614 bsoncxx::document::view_or_value update,
@@ -632,7 +632,7 @@ class MONGOCXX_API collection {
632632 // / mongocxx::logic_error if the update is invalid, or mongocxx::bulk_write_exception if the
633633 // / operation fails.
634634 // /
635- // / @see http ://docs.mongodb.org/manual /reference/command/update/
635+ // / @see https ://docs.mongodb.com/master /reference/command/update/
636636 // /
637637 stdx::optional<result::update> update_one (bsoncxx::document::view_or_value filter,
638638 bsoncxx::document::view_or_value update,
0 commit comments