From 547a902bd3c02dfecf7cf5cc703cb8b283dce0fd Mon Sep 17 00:00:00 2001 From: naitsirch Date: Fri, 26 Sep 2014 19:49:12 +0200 Subject: [PATCH] Fixed small typo in documentation about extra lazy associations #DWEB-118 --- docs/en/tutorials/extra-lazy-associations.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/tutorials/extra-lazy-associations.rst b/docs/en/tutorials/extra-lazy-associations.rst index 2665d4bba..456c8c1c5 100644 --- a/docs/en/tutorials/extra-lazy-associations.rst +++ b/docs/en/tutorials/extra-lazy-associations.rst @@ -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.