We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d0181b commit 5b0c82cCopy full SHA for 5b0c82c
docs/en/reference/query-builder-api.rst
@@ -98,7 +98,7 @@ You can execute a query by getting a ``Query`` through the ``getQuery()`` method
98
$qb = $dm->createQueryBuilder(User::class);
99
$query = $qb->getQuery();
100
101
-Now you can ``execute()`` that query and it will return a cursor for you to iterate over the results:
+Now you can ``execute()`` that query and it will return an ``Iterator`` for you to iterate over the results:
102
103
.. code-block:: php
104
@@ -193,7 +193,7 @@ method:
193
->getQuery()
194
->execute();
195
196
-The above would give you an ``ArrayCollection`` of all the distinct user ages!
+The above would give you an array of all the distinct user ages!
197
198
.. note::
199
0 commit comments