From 6cd7d21db1e1fc4a6c09398e3271f71f09d18415 Mon Sep 17 00:00:00 2001 From: Dan Patrick Date: Mon, 1 Aug 2011 18:04:14 -0500 Subject: [PATCH] Small grammar changes in section explaining lazyload/ArrayCollection. --- en/tutorials/getting-started-xml-edition.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/en/tutorials/getting-started-xml-edition.rst b/en/tutorials/getting-started-xml-edition.rst index 24ea4ab67..4678834d9 100644 --- a/en/tutorials/getting-started-xml-edition.rst +++ b/en/tutorials/getting-started-xml-edition.rst @@ -126,8 +126,8 @@ or collections of all the relations that haven't been explicitly retrieved from the database yet. To be able to use lazyload with collections, simple PHP arrays have -to be replaced by a generic collection interface Doctrine which -tries to act as array as much as possible using ArrayAccess, +to be replaced by a generic collection interface for Doctrine which +tries to act as as much like an array as possible by using ArrayAccess, IteratorAggregate and Countable interfaces. The class is the most simple implementation of this interface.