1
0
mirror of synced 2025-01-31 12:32:59 +03:00

Fixed small typo in documentation about extra lazy associations #DWEB-118

This commit is contained in:
naitsirch 2014-09-26 19:49:12 +02:00
parent 3f8865c6fb
commit 547a902bd3

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.