Skip to content

Commit 2e20878

Browse files
committed
rr feedback
1 parent fab891b commit 2e20878

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

source/code-snippets/usage-examples/insertOne.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ interface Movie {
1414

1515
async function run() {
1616
try {
17-
const database = client.db("smaple_mflix");
17+
const database = client.db("sample_mflix");
1818
// Specifying a Schema is optional, but it enables type hints on
1919
// finds and inserts
2020
const movies = database.collection<Movie>("movies");

source/crud/query.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ Additional Information
157157
~~~~~~~~~~~~~~~~~~~~~~
158158

159159
For runnable code examples that demonstrate find operations, see the following
160-
full file examples:
160+
examples:
161161

162162
- :ref:`node-usage-findone`
163163
- :ref:`node-usage-find`

source/crud/query/retrieve.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -197,14 +197,14 @@ find() Example: Full File
197197
The following full file example finds documents from the ``movies`` collection. It
198198
uses the following parameters:
199199

200-
- A **query document** that configures the query to return only
201-
movies with a runtime of less than 15 minutes.
200+
- **Filter** that matches documents in which the ``runtime`` value is less than 15
201+
minutes.
202202

203-
- A **sort** that organizes returned documents in ascending order by
203+
- **Sort** that organizes returned documents in ascending order by
204204
title (alphabetical order in which "A" comes before "Z" and "1" before
205205
"9").
206206

207-
- A **projection** that explicitly excludes the ``_id`` field from
207+
- **Projection** that explicitly excludes the ``_id`` field from
208208
returned documents and explicitly includes only the ``title`` and
209209
``imdb`` object (and its embedded fields).
210210

@@ -331,7 +331,7 @@ Additional Information
331331
~~~~~~~~~~~~~~~~~~~~~~
332332

333333
For a runnable example of the ``watch()`` method, see the :ref:`examples
334-
<node-usage-watch:>` section in the :ref:`node-change-streams` guide.
334+
<node-usage-watch>` section in the :ref:`node-change-streams` guide.
335335

336336
.. _node-retrieve-instruqt-lab:
337337

0 commit comments

Comments
 (0)