From ffa2a545fa0d34c135629fe1048c26001a139a7d Mon Sep 17 00:00:00 2001 From: Joseph Rouff Date: Thu, 25 Aug 2011 01:36:21 +0300 Subject: [PATCH] Fix typo --- en/tutorials/extra-lazy-associations.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/tutorials/extra-lazy-associations.rst b/en/tutorials/extra-lazy-associations.rst index b0b90947a..d6ed40d3d 100644 --- a/en/tutorials/extra-lazy-associations.rst +++ b/en/tutorials/extra-lazy-associations.rst @@ -2,7 +2,7 @@ Extra Lazy Associations ======================= In many cases associations between entities can get pretty large. Even in a simple scenario like a blog. -where posts can be commented, you always have to assume that a post draws hundrets of comments. +where posts can be commented, you always have to assume that a post draws hundreds of comments. In Doctrine 2.0 if you accessed an association it would always get loaded completly into memory. This can lead to pretty serious performance problems, if your associations contain several hundrets or thousands of entities.