Skip to content

Commit b931017

Browse files
committed
NR PR fixes 1
1 parent eda8d4c commit b931017

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

source/data-formats/serialization.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ After you add the library dependency, you can implement serializers from
351351
the ``kotlinx-datetime`` library that map your data class field values
352352
to the expected types in BSON.
353353

354-
In the following example, the driver serializes the fields of
354+
In this example, the driver serializes the fields of
355355
the ``Appointment`` data class with the following behavior:
356356

357357
- ``name``: The driver serializes the value as a string.
@@ -371,7 +371,7 @@ the ``Appointment`` data class with the following behavior:
371371
:dedent:
372372

373373
The following example inserts an instance of the ``Appointment`` data
374-
class into MongoDB:
374+
class into the ``appointments`` collection:
375375

376376
.. literalinclude:: /includes/data-formats/serialization.kt
377377
:language: kotlin
@@ -380,7 +380,7 @@ class into MongoDB:
380380
:dedent:
381381

382382
In MongoDB, the ``LocalDate`` value is stored as a BSON date, and the
383-
``time`` field is stored as a string by default serialization:
383+
``time`` field is stored as a string by default serialization:
384384

385385
.. code-block:: json
386386

source/indexes/atlas-search-index.txt

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,11 @@ Search and Vector Search indexes:
4747

4848
.. note::
4949

50-
The Atlas Search index management methods run asynchronously and might return before
51-
confirming that they ran successfully. To determine the current status of the indexes,
52-
call the ``listSearchIndexes()`` method.
50+
The Atlas Search and Vector Search index management methods run
51+
asynchronously and might return before confirming that they ran
52+
successfully. To determine the current status of the indexes, call
53+
the ``listSearchIndexes()`` method or view the indexes list in the
54+
:atlas:`Atlas UI </atlas-ui/indexes/>`.
5355

5456
The following sections provide code examples that demonstrate how to use
5557
each of the preceding methods.
@@ -72,7 +74,7 @@ The following code example shows how to create an Atlas Search index:
7274
:end-before: end-create-search-index
7375
:dedent:
7476

75-
The following code example shows how to create Search and
77+
The following code example shows how to create Atlas Search and
7678
Vector Search indexes in one call:
7779

7880
.. literalinclude:: /includes/indexes/indexes.kt

0 commit comments

Comments
 (0)