Skip to content

Commit 050ac55

Browse files
committed
vale fixes
1 parent 9311ba6 commit 050ac55

File tree

5 files changed

+12
-11
lines changed

5 files changed

+12
-11
lines changed

source/fundamentals/auth.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,5 +501,5 @@ mechanism:
501501
:language: kotlin
502502

503503
For additional information on configuring your application to use
504-
certificates as well as TLS/SSL options, see our
504+
certificates and TLS/SSL options, see our
505505
:doc:`TLS/SSL guide </fundamentals/connection/tls>`.

source/fundamentals/builders.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@ builders in the {+driver-short+}:
8787
.. literalinclude:: /examples/generated/BuildersTest.snippet.no-builders.kt
8888
:language: kotlin
8989

90-
In this case, you could easily include an error when writing the
91-
``"\$gt"`` operator in the filter, but you would see an error only at
92-
runtime.
90+
In this case, you might easily include an error when writing the
91+
``"\$gt"`` operator in the filter, but your IDE returns the relevant
92+
error only at runtime.
9393

9494
Using Builders
9595
~~~~~~~~~~~~~~

source/fundamentals/builders/aggregates.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,7 @@ to the ``name`` field:
532532
.. literalinclude:: /examples/generated/AggregatesBuilderTest.snippet.graph-lookup.kt
533533
:language: kotlin
534534

535-
Using ``GraphLookupOptions``, you can specify the depth to recurse as well as
535+
Using ``GraphLookupOptions``, you can specify the depth to recurse and
536536
the name of the depth field, if desired. In this example, ``$graphLookup`` will
537537
recurse up to two times, and create a field called ``degrees`` with the
538538
recursion depth information for every document.

source/fundamentals/data-formats/documents.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ MongoDB Kotlin driver.
1818

1919
A MongoDB document is a data structure that contains key/value fields in
2020
binary JSON (BSON) format. You can use documents and the data they contain
21-
in their fields to store data as well as issue commands or queries in
22-
MongoDB.
21+
in their fields to store data, and you can use them to issue commands or
22+
queries in MongoDB.
2323

2424
For more information on the terminology, structure, and limitations of documents,
2525
read our page on :manual:`Documents </core/document>` in the MongoDB manual.

source/migrate-kmongo.txt

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -272,9 +272,10 @@ Both drivers provide support for type-safe queries using property references.
272272
Data Typing
273273
-----------
274274

275-
Both drivers support the use of {+language+} data classes as well as the ``Document`` class to
276-
model the data stored in a MongoDB collection. The ``Document``
277-
class lets you model data represented in a MongoDB collection in a flexible format.
275+
Both drivers support the use of {+language+} data classes and the
276+
``Document`` class to model the data stored in a MongoDB collection. The
277+
``Document`` class lets you model data represented in a MongoDB
278+
collection in a flexible format.
278279

279280
.. tabs::
280281

@@ -329,7 +330,7 @@ in {+language+} to and from BSON.
329330
:tabid: {+driver-long+}
330331

331332
You can serialize data classes in the {+driver-short+} using both automatic
332-
data class codecs as well as the ``kotlinx.serialization`` library. The
333+
data class codecs and the ``kotlinx.serialization`` library. The
333334
driver provides an efficient ``Bson`` serializer that handles the
334335
serialization of {+language+} objects to BSON data.
335336

0 commit comments

Comments
 (0)