Skip to content

Commit 7d9bfe8

Browse files
committed
SA PR fixes 1
1 parent 198fea0 commit 7d9bfe8

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

source/indexes.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,9 +229,10 @@ Atlas Search Index Management
229229
-----------------------------
230230

231231
The following sections contain code examples that describe how to manage
232-
:atlas:`Atlas Search indexes </atlas-search/manage-indexes/>`.
232+
:atlas:`Atlas Search </atlas-search/manage-indexes/>` and :atlas:`Vector
233+
Search </atlas-vector-search/vector-search-type/>` indexes.
233234

234-
.. note:: Atlas Search Index Management is Asynchronous
235+
.. note:: Atlas Search and Vector Search Index Management is Asynchronous
235236

236237
The {+php-library+} manages Atlas Search indexes asynchronously. The
237238
library methods described in the following sections return the server

source/indexes/atlas-search-index.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ to manage your Atlas Search and Vector Search indexes:
4040
- ``MongoDB\Collection::updateSearchIndex()``
4141
- ``MongoDB\Collection::dropSearchIndex()``
4242

43-
.. note:: Search and Vector Search Index Management is Asynchronous
43+
.. note:: Atlas Search and Vector Search Index Management is Asynchronous
4444

4545
The {+php-library+} manages Atlas Search and Vector Search indexes
4646
asynchronously. The library methods described in the following
@@ -77,7 +77,7 @@ Search index:
7777
:start-after: start-create-vector-index
7878
:end-before: end-create-vector-index
7979

80-
The following code example shows how to create Search and
80+
The following code example shows how to create Atlas Search and
8181
Vector Search indexes in one call:
8282

8383
.. literalinclude:: /includes/indexes/indexes.php

source/reference/method/MongoDBCollection-createSearchIndex.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ Parameters
5252
- string
5353
- | Name of the search index to create.
5454
| You cannot create multiple indexes with the same name on a single
55-
collection. If you do not specify a name, the index is named ``default``.
55+
collection. If you do not specify a name, the default index
56+
name is ``default``.
5657

5758
* - type
5859
- string

source/reference/method/MongoDBCollection-createSearchIndexes.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ Parameters
3939

4040
An optional ``name`` string field specifies the name of the search index to
4141
create. You cannot create multiple indexes with the same name on a single
42-
collection. If you do not specify a name, the index is named "default".
42+
collection. If you do not specify a name, the default index name is
43+
``default``.
4344

4445
An optional ``type`` string field specifies the type of search index to
4546
create. Accepted values are ``'search'`` and ``'vectorSearch'``. If

0 commit comments

Comments
 (0)