Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pymongo/collection.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ def _command(

:Parameters:
- `sock_info` - A SocketInfo instance.
- `command` - The command itself, as a SON instance.
- `command` - The command itself, as a :class:`~bson.son.SON` instance.
- `codec_options` (optional) - An instance of
:class:`~bson.codec_options.CodecOptions`.
- `check`: raise OperationFailure if there are errors
Expand Down Expand Up @@ -1443,7 +1443,7 @@ def find(self, *args: Any, **kwargs: Any) -> Cursor[_DocumentType]:
this :class:`Collection`.

:Parameters:
- `filter` (optional): a SON object specifying elements which
- `filter` (optional): a :class:`~bson.son.SON` object specifying elements which
must be present for a document to be included in the
result set
- `projection` (optional): a list of field names that should be
Expand Down