File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ This example retrieves documents that match a query filter from the ``restaurant
42
42
collection in the ``sample_restaurants`` database. The ``find()`` method returns
43
43
all documents in which the value of the ``cuisine`` field is ``"French"``.
44
44
45
- You can model each retrieved document as a BSON data type or a custom data type. To specify
45
+ You can model each retrieved document as a ``Document`` type or a custom data type. To specify
46
46
which data type represents the collection's data, replace the ``<T>`` type parameter on the
47
47
highlighted line with one of the following values:
48
48
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ This example retrieves a document that matches a query filter from the ``restaur
38
38
collection in the ``sample_restaurants`` database. The ``find_one()`` method returns the
39
39
first document in which the value of the ``name`` field is ``"Tompkins Square Bagels"``.
40
40
41
- You can model the retrieved document as a BSON data type or a custom data type. To specify
41
+ You can model the retrieved document as a ``Document`` type or a custom data type. To specify
42
42
which data type represents the collection's data, replace the ``<T>`` type parameter on the
43
43
highlighted line with one of the following values:
44
44
You can’t perform that action at this time.
0 commit comments