Skip to content

Commit d80e15c

Browse files
committed
fixes
1 parent bc6a692 commit d80e15c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

source/usage-examples/find.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ This example retrieves documents that match a query filter from the ``restaurant
4242
collection in the ``sample_restaurants`` database. The ``find()`` method returns
4343
all documents in which the value of the ``cuisine`` field is ``"French"``.
4444

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
4646
which data type represents the collection's data, replace the ``<T>`` type parameter on the
4747
highlighted line with one of the following values:
4848

source/usage-examples/findOne.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ This example retrieves a document that matches a query filter from the ``restaur
3838
collection in the ``sample_restaurants`` database. The ``find_one()`` method returns the
3939
first document in which the value of the ``name`` field is ``"Tompkins Square Bagels"``.
4040

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
4242
which data type represents the collection's data, replace the ``<T>`` type parameter on the
4343
highlighted line with one of the following values:
4444

0 commit comments

Comments
 (0)