@@ -41,11 +41,9 @@ Sample Data
41
41
~~~~~~~~~~~
42
42
43
43
The examples in this guide use the ``sample_restaurants.restaurants`` collection
44
- from the :atlas:`Atlas sample datasets </sample-data>`.
45
-
46
- .. TODO To learn how to create a
47
- .. free MongoDB Atlas cluster and load the sample datasets, see the
48
- .. :ref:`<kotlin-sync-get-started>` tutorial.
44
+ from the :atlas:`Atlas sample datasets </sample-data>`. To learn how to create a
45
+ free MongoDB Atlas cluster and load the sample datasets, see the
46
+ :atlas:`Get Started with Atlas </getting-started>` guide.
49
47
50
48
The documents in this collection are modeled by the following {+language+} data class:
51
49
@@ -66,9 +64,7 @@ You can perform delete operations in MongoDB by using the following methods:
66
64
67
65
Each delete method requires a **query filter** document, which specifies the
68
66
search criteria that determine which documents to select for removal.
69
- For more information about query filters, see the
70
- :manual:`Query Filter Documents section </core/document/#query-filter-documents>` in
71
- the {+mdb-server+} manual.
67
+ To learn more about query filters, see the :ref:`kotlin-sync-specify-query` guide.
72
68
73
69
Delete One Document
74
70
~~~~~~~~~~~~~~~~~~~
@@ -102,7 +98,7 @@ Customize the Delete Operation
102
98
103
99
The ``deleteOne()`` and ``deleteMany()`` methods optionally accept a
104
100
``DeleteOptions`` parameter, which represents options you can use to
105
- configure the delete operation. If you don't specify any additional
101
+ configure the delete operation. If you don't specify any
106
102
options, the driver performs the delete operation with default settings.
107
103
108
104
The following table describes the setter methods that you can use to
0 commit comments