Skip to content

Commit

Permalink
DOCSP-44438 - Remove nil (#268) (#274)
Browse files Browse the repository at this point in the history
(cherry picked from commit cd5c1b5)

Co-authored-by: Mike Woofter <[email protected]>
  • Loading branch information
github-actions[bot] and mongoKart authored Oct 22, 2024
1 parent 07d71bb commit cdbc7e0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions source/fundamentals/crud/read-operations/count.txt
Original file line number Diff line number Diff line change
Expand Up @@ -99,19 +99,19 @@ You can set the following properties in a ``CountOptions`` object:

* - ``Collation``
- | The type of language collation to use when sorting results.
| Default: ``nil``
| Default: ``null``

* - ``Hint``
- | The index to use to scan for documents to count.
| Default: ``nil``
| Default: ``null``

* - ``Limit``
* - ``Limit``
- | The maximum number of documents to count.
| Default: ``0``
| Default: ``0``

* - ``MaxTime``
- | The maximum amount of time that the query can run on the server.
| Default: ``nil``
| Default: ``null``

* - ``Skip``
- | The number of documents to skip before counting.
Expand Down Expand Up @@ -164,7 +164,7 @@ You can set the following properties in a ``EstimatedDocumentCountOptions`` obje

* - ``MaxTime``
- | The maximum amount of time that the query can run on the server.
| Default: ``nil``
| Default: ``null``

Example
```````
Expand Down

0 comments on commit cdbc7e0

Please sign in to comment.