Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Grégoire Paris <[email protected]>
  • Loading branch information
beberlei and greg0ire authored Oct 12, 2024
1 parent 7c9b742 commit cf8f5f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/en/reference/dql-doctrine-query-language.rst
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ DQL keyword:
$query = $em->createQuery('SELECT partial u.{id, username} FROM CmsUser u');
$users = $query->getResult(); // array of partially loaded CmsUser objects
You use the partial syntax when joining as well:
You can use the partial syntax when joining as well:

.. code-block:: php
Expand Down
2 changes: 1 addition & 1 deletion docs/en/reference/partial-objects.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ A partial object is an object whose state is not fully initialized
after being reconstituted from the database and that is
disconnected from the rest of its data. The following section will
describe why partial objects are problematic and what the approach
of Doctrine2 to this problem is.
of Doctrine to this problem is.

.. note::

Expand Down

0 comments on commit cf8f5f9

Please sign in to comment.