From 9b7318ab4c1fe09b7b9e58a683daadb4fdd2e0d5 Mon Sep 17 00:00:00 2001
From: Logan Bailey <logan@logansbailey.com>
Date: Thu, 14 Aug 2014 17:07:05 -0700
Subject: [PATCH] Changed table name to be more appropriate.

This change assumes that the Article object references the articles tables, not the user table.
---
 docs/en/reference/working-with-objects.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/en/reference/working-with-objects.rst b/docs/en/reference/working-with-objects.rst
index a402be88c..a7e03bcc9 100644
--- a/docs/en/reference/working-with-objects.rst
+++ b/docs/en/reference/working-with-objects.rst
@@ -114,7 +114,7 @@ from newly opened EntityManager.
     $article = $em->find('Article', 1);
 
 This code only retrieves the ``Article`` instance with id 1 executing
-a single SELECT statement against the user table in the database.
+a single SELECT statement against the articles table in the database.
 You can still access the associated properties author and comments
 and the associated objects they contain.