1
0
mirror of synced 2025-01-10 11:07:10 +03:00

Merge pull request #1148 from naitsirch/hotfix/DWEB-118

[DWEB-118] Fixed small typo in documentation about extra lazy associations
This commit is contained in:
Steve Müller 2014-09-27 18:19:53 +02:00
commit 05045d9544

View File

@ -20,7 +20,7 @@ can be called without triggering a full load of the collection:
- ``Collection#get($key)`` (available with Doctrine 2.4)
- ``Collection#slice($offset, $length = null)``
For each of this three methods the following semantics apply:
For each of the above methods the following semantics apply:
- For each call, if the Collection is not yet loaded, issue a straight SELECT statement against the database.
- For each call, if the collection is already loaded, fallback to the default functionality for lazy collections. No additional SELECT statements are executed.