Skip to content

Commit 6877e84

Browse files
authored
DOCSP-27577: refer to compound operations correctly (#252)
* DOCSP-27577: refer to compound operations correctly * missed on first pass
1 parent d043877 commit 6877e84

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

source/fundamentals/crud/read-operations/project.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Overview
1616
--------
1717

1818
In this guide, you can learn how to specify which fields to return in a
19-
document from read operations.
19+
document.
2020

2121
Sample Data
2222
~~~~~~~~~~~
@@ -58,7 +58,7 @@ corresponding field or ``0`` to exclude it. If you are using an aggregation fram
5858
you can also specify a projection to include newly computed fields.
5959

6060
You can specify a projection by passing a projection document to the ``SetProjection()``
61-
method. The following read operations take an options object as a parameter:
61+
method. The following operations take an options object as a parameter:
6262

6363
- ``Find()``
6464
- ``FindOne()``
@@ -68,7 +68,7 @@ method. The following read operations take an options object as a parameter:
6868

6969
.. tip::
7070

71-
If you don't specify a projection, the read operation returns all
71+
If you don't specify a projection, the operation returns all
7272
the fields in matched documents.
7373

7474
Exclude a Field

source/fundamentals/crud/read-operations/sort.txt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Overview
1616
--------
1717

1818
In this guide, you can learn how to specify the order of your results
19-
from read operations.
19+
from an operation.
2020

2121
Sample Data
2222
~~~~~~~~~~~
@@ -49,10 +49,9 @@ Sort Direction
4949
--------------
5050

5151
To specify the order of your results, pass an interface specifying the
52-
sort fields and direction to the ``SetSort()`` method of a read
53-
operation's options.
52+
sort fields and direction to the ``SetSort()`` method of an operation's options.
5453

55-
The following read operations take options as a parameter:
54+
The following operations take options as a parameter:
5655

5756
- ``Find()``
5857
- ``FindOne()``

0 commit comments

Comments
 (0)