Skip to content

Commit 80ff5d0

Browse files
committed
Address JS feedback
1 parent cf6712a commit 80ff5d0

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed

source/indexes/atlas-search-index.txt

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ Atlas Search Indexes
2020
Overview
2121
--------
2222

23-
The Atlas Search feature enables you to perform full-text searches on
24-
collections hosted on MongoDB Atlas. The indexes specify the behavior of
23+
:atlas:`Atlas Search </atlas-search>` enables you to perform full-text searches on
24+
collections hosted on MongoDB Atlas. Atlas Search indexes specify the behavior of
2525
the search and which fields to index.
2626

2727
You can call the following methods on a collection to manage your Atlas Search
@@ -35,10 +35,9 @@ indexes:
3535

3636
.. note::
3737

38-
The Atlas Search Index management methods run asynchronously. The
39-
driver methods can return before confirming that they ran
40-
successfully. To determine the current status of the indexes, call the
41-
``listSearchIndexes()`` method.
38+
The Atlas Search index management methods run asynchronously, and might return before
39+
confirming that they ran successfully. To determine the current status of the indexes,
40+
call the ``listSearchIndexes()`` method.
4241

4342
The following sections provide code examples that demonstrate how to use
4443
each of the preceding methods.
@@ -50,7 +49,7 @@ Create a Search Index
5049

5150
You can use the `createSearchIndex() <{+api+}/mongodb-driver-kotlin-sync/com.mongodb.kotlin.client/-mongo-collection/create-search-index.html>`__
5251
and the `createSearchIndexes() <{+api+}/mongodb-driver-kotlin-sync/com.mongodb.kotlin.client/-mongo-collection/create-search-indexes.html>`__
53-
methods to create Atlas Search indexes.
52+
methods to create one or more Atlas Search indexes.
5453

5554
The following code example shows how to create a single index:
5655

@@ -68,16 +67,20 @@ The following code example shows how to create multiple indexes:
6867
:end-before: end-create-search-indexes
6968
:dedent:
7069

70+
To learn more about the syntax used when defining Atlas Search indexes, see the
71+
:atlas:`Review Atlas Search Index Syntax </atlas-search/index-definitions>` guide
72+
in the Atlas manual.
73+
7174
.. _kotlin-sync-atlas-search-index-list:
7275

7376
List Search Indexes
7477
-------------------
7578

7679
You can use the
7780
`listSearchIndexes() <{+api+}/mongodb-driver-kotlin-sync/com.mongodb.kotlin.client/-mongo-collection/list-search-indexes.html>`__
78-
method to return the Atlas Search indexes of a collection.
81+
method to return all Atlas Search indexes in a collection.
7982

80-
The following code example shows how to print a list of the search indexes of
83+
The following code example shows how to print a list of the search indexes in
8184
a collection:
8285

8386
.. literalinclude:: /includes/indexes/indexes.kt

0 commit comments

Comments
 (0)