We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac67fd2 commit bb71d4cCopy full SHA for bb71d4c
docs/50-counting-sorting/1-counting-documents.mdx
@@ -15,7 +15,7 @@ db.books.aggregate([
15
]);
16
```
17
18
-Counting the books! Let's add a new stage to the pipeline to count those books:
+By counting the books! Let's add a new stage to the pipeline to count those books:
19
20
```js
21
let moreThan150pages = {pages: {$gte: 150}}
@@ -32,7 +32,7 @@ db.books.aggregate([
32
33
34
35
-Here, `$count` will count the resulting docs and will return a document with just one field: `totalBooks`
+Here, `$count` will count the resulting docs and will return a document with just one field: `totalBooks`.
36
37
38
{
0 commit comments