From 6b3dfaccfcdca7051b013a6a403696c50215c4be Mon Sep 17 00:00:00 2001 From: Benjamin Eberlei Date: Sun, 1 May 2011 10:01:38 +0200 Subject: [PATCH] DDC-1102 - Typo in EntityGenerator --- lib/Doctrine/ORM/Tools/EntityGenerator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Doctrine/ORM/Tools/EntityGenerator.php b/lib/Doctrine/ORM/Tools/EntityGenerator.php index 9fbc21780..9eb1f4d2a 100644 --- a/lib/Doctrine/ORM/Tools/EntityGenerator.php +++ b/lib/Doctrine/ORM/Tools/EntityGenerator.php @@ -520,7 +520,7 @@ public function () } if ($metadata->isMappedSuperclass) { - $lines[] = ' * @' . $this->_annotationsPrefix . 'MappedSupperClass'; + $lines[] = ' * @' . $this->_annotationsPrefix . 'MappedSuperClass'; } else { $lines[] = ' * @' . $this->_annotationsPrefix . 'Entity'; }