From ece53ab8b62e5502a0ab1b6d5ca133cdec8d1901 Mon Sep 17 00:00:00 2001 From: Daniel Londero Date: Mon, 21 Feb 2011 06:41:49 -0800 Subject: [PATCH] Typo in the namespace when adding a new property to User entity. --- guides/doctrine/orm/overview.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/doctrine/orm/overview.rst b/guides/doctrine/orm/overview.rst index 62c97a71acd..6ff861d7c99 100644 --- a/guides/doctrine/orm/overview.rst +++ b/guides/doctrine/orm/overview.rst @@ -203,7 +203,7 @@ update your development database schema without blowing away everything and losing your existing data. So first lets just add a new property to our ``User`` entity:: - namespace Sensio\HelloBundle\Entities; + namespace Sensio\HelloBundle\Entity; /** @orm:Entity */ class User