Skip to content

Commit a25b97a

Browse files
authored
Merge pull request #29 from Meg528/patch-21
Update group.mdx
2 parents 6488214 + 9e31f52 commit a25b97a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/70-grouping/group.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ db.books.aggregate([
1111
])
1212
```
1313

14-
Here, we group by book's `year` (the _id of the grouping), and then we create a new field called `totalPages` that's the sum of all pages.
14+
Here, we group by the book's `year` (the _id of the grouping), and then we create a new field called `totalPages` that's the sum of all pages.
1515

1616
👐 Can you get the results ordered ascending by year?
1717

@@ -49,7 +49,7 @@ db.books.aggregate([
4949
</div>
5050
</details>
5151

52-
👐 Which year had the most printed out pages?
52+
👐 Which year had the most printed-out pages?
5353

5454
<details>
5555
<summary>Answer</summary>
@@ -66,4 +66,4 @@ db.books.aggregate([
6666
])
6767
```
6868
</div>
69-
</details>
69+
</details>

0 commit comments

Comments
 (0)