Skip to content

Commit bc6bff5

Browse files
committed
DOCSP-50497 tweaks
1 parent b75194c commit bc6bff5

File tree

2 files changed

+22
-22
lines changed

2 files changed

+22
-22
lines changed

source/aggregation.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ In this guide, you can learn how to use the {+driver-long+} to perform
3333
**aggregation operations**.
3434

3535
Aggregation operations process data in your MongoDB collections and return
36-
computed results. The MongoDB Aggregation framework is modeled on the
37-
concept of data processing pipelines. Documents enter a pipeline comprised of one or
38-
more stages, and this pipeline transforms the documents into an aggregated result.
36+
computed results. The MongoDB Aggregation framework is modeled on the concept of
37+
data processing pipelines. Documents enter a pipeline comprised of one or more
38+
stages, and this pipeline transforms the documents into an aggregated result.
3939

4040
To learn more about the aggregation stages supported by the {+driver-short+},
41-
see :ref:` <node-aggregation-pipeline-stages>`.
41+
see :ref:`node-aggregation-pipeline-stages`.
4242

4343
.. _node-aggregation-tutorials:
4444

@@ -65,9 +65,9 @@ Compare Aggregation and Find Operations
6565
---------------------------------------
6666

6767
The following table lists the different tasks you can perform with find
68-
operations compared to what you can achieve with aggregation
69-
operations. The aggregation framework provides expanded functionality
70-
that allows you to transform and manipulate your data.
68+
operations compared to what you can achieve with aggregation operations. The
69+
aggregation framework provides expanded functionality that allows you to
70+
transform and manipulate your data.
7171

7272
.. list-table::
7373
:header-rows: 1

source/aggregation/pipeline-stages.txt

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,10 @@ Aggregation Stage Methods
6262
-------------------------
6363

6464
The following table lists the stages in the aggregation pipeline. To learn more
65-
about an aggregation stage and see a code example in a Node.js application,
65+
about an aggregation stage and see a code example in a {+environment+} application,
6666
follow the link from the stage name to its reference page in the {+mdb-server+}
6767
manual.
6868

69-
7069
.. list-table::
7170
:header-rows: 1
7271
:widths: 30 70
@@ -98,7 +97,8 @@ manual.
9897
``$changeStream`` uses the ``watch()`` method on a ``Collection``
9998
object.
10099

101-
* - :manual:`$changeStreamSplitLargeEvent </reference/operator/aggregation/changeStreamSplitLargeEvent/>`
100+
* - :manual:`$changeStreamSplitLargeEvent
101+
</reference/operator/aggregation/changeStreamSplitLargeEvent/>`
102102
- Splits large change stream events that exceed 16 MB into smaller fragments returned
103103
in a change stream cursor.
104104

@@ -119,7 +119,8 @@ manual.
119119
part of a transaction.
120120

121121
* - :manual:`$densify </reference/operator/aggregation/densify/>`
122-
- Creates new documents in a sequence of documents where certain values in a field are missing.
122+
- Creates new documents in a sequence of documents where certain values in a
123+
field are missing.
123124

124125
* - :manual:`$documents </reference/operator/aggregation/documents/>`
125126
- Returns literal documents from input expressions.
@@ -142,21 +143,20 @@ manual.
142143
results of the recursive search for that document.
143144

144145
* - :manual:`$group </reference/operator/aggregation/group/>`
145-
- Groups input documents by a specified identifier expression
146-
and applies the accumulator expressions, if specified, to
147-
each group. Consumes all input documents and outputs one
148-
document per each distinct group. The output documents
149-
contain only the identifier field and, if specified, accumulated
150-
fields.
146+
- Groups input documents by a specified identifier expression and applies
147+
the accumulator expressions, if specified, to each group. Consumes all
148+
input documents and outputs one document per each distinct group. The
149+
output documents contain only the identifier field and, if specified,
150+
accumulated fields.
151151

152152
* - :manual:`$indexStats </reference/operator/aggregation/indexStats>`
153153
- Returns statistics regarding the use of each index for the collection.
154154

155155
* - :manual:`$limit </reference/operator/aggregation/limit/>`
156-
- Passes the first *n* documents unmodified to the pipeline,
157-
where *n* is the specified limit. For each input document,
158-
outputs either one document (for the first *n* documents) or
159-
zero documents (after the first *n* documents).
156+
- Passes the first *n* documents unmodified to the pipeline, where *n* is
157+
the specified limit. For each input document, outputs either one document
158+
(for the first *n* documents) or zero documents (after the first *n*
159+
documents).
160160

161161
* - :manual:`$listSampledQueries </reference/operator/aggregation/listSampledQueries/>`
162162
- Lists sampled queries for all collections or a specific collection. Only
@@ -306,7 +306,7 @@ To learn more about assembling an aggregation pipeline, see :manual:`Aggregation
306306
Pipeline </core/aggregation-pipeline/>` in the {+mdb-server+} manual.
307307

308308
To learn more about creating pipeline stages, see :manual:`Aggregation Stages
309-
</reference/operator/aggregation-pipeline/>` in the MongoDB Server manual.
309+
</reference/operator/aggregation-pipeline/>` in the {+mdb-server+} manual.
310310

311311
For more information about the methods and classes used on this page, see the
312312
following API documentation:

0 commit comments

Comments
 (0)