File tree Expand file tree Collapse file tree 1 file changed +4
-7
lines changed
source/fundamentals/crud/read-operations Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -31,13 +31,10 @@ data from a `FindIterable
31
31
other iterables such as an `AggregateIterable
32
32
<{+api+}/apidocs/mongodb-driver-sync/com/mongodb/client/AggregateIterable.html>`__.
33
33
34
- The ``find()`` method iterates through all the documents in your
35
- collection to find documents that match your query and returns an
36
- instance of a ``FindIterable``.
37
-
38
- A ``FindIterable`` consists of documents matched by your search criteria
39
- and allows you to further specify which documents to see by setting
40
- parameters through methods.
34
+ The ``find()`` method creates and returns an instance of a
35
+ ``FindIterable``. A ``FindIterable`` allows you to browse the documents
36
+ matched by your search criteria and to further specify which documents
37
+ to see by setting parameters through methods.
41
38
42
39
Terminal Methods
43
40
----------------
You can’t perform that action at this time.
0 commit comments