Skip to content

Commit 03dc7e8

Browse files
authored
Merge pull request #13 from Meg528/patch-5
Update 3-structure-aggregation.mdx
2 parents a20f920 + a6613b1 commit 03dc7e8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/20-what-is-aggregation/3-structure-aggregation.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
2-
description: See the parts that compose an Aggregation Pipeline
2+
description: See the parts that compose an aggregation pipeline.
33
---
44

5-
# 📘 Structure of an aggregation pipeline
5+
# 📘 Structure of an Aggregation Pipeline
66

7-
To interact with a relational database we typically use SQL, a 4th Generation language to access our data. With MongoDB we instead get data and transform it in incremental steps.
7+
To interact with a relational database, we typically use SQL, a 4th-generation language, to access our data. With MongoDB, we instead get data and transform it in incremental steps.
88

99
An aggregation pipeline is composed of [__stages__](https://www.mongodb.com/docs/manual/reference/operator/aggregation-pipeline/).
1010

@@ -20,7 +20,7 @@ db.mycollection.aggregate([
2020

2121
## Example
2222

23-
An Aggregation Pipeline that does the same than above SQL statement could be:
23+
An aggregation pipeline that does the same as the above SQL statement could be:
2424

2525
```
2626
db.mycollection.aggregate([
@@ -63,4 +63,4 @@ db.mycollection.aggregate([
6363
},
6464
},
6565
])
66-
```
66+
```

0 commit comments

Comments
 (0)