From c89290e5077ade0080032d1cf5bdcf5947f713cb Mon Sep 17 00:00:00 2001 From: Ray Rehbein Date: Thu, 16 Dec 2010 06:12:58 +0800 Subject: [PATCH] Corrected mismatch between example and comment entities. --- en/reference/working-with-objects.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/reference/working-with-objects.rst b/en/reference/working-with-objects.rst index 08e950843..ccb1fae08 100644 --- a/en/reference/working-with-objects.rst +++ b/en/reference/working-with-objects.rst @@ -113,7 +113,7 @@ from newly opened EntityManager. $article = $em->find('Article', 1); -This code only retrieves the ``User`` instance with id 1 executing +This code only retrieves the ``Article`` instance with id 1 executing a single SELECT statement against the user table in the database. You can still access the associated properties author and comments and the associated objects they contain.