From d44d82b694fc4fbb9f376bdba490e679f1263718 Mon Sep 17 00:00:00 2001 From: Mikko Hirvonen Date: Mon, 16 Jan 2012 22:08:49 +0200 Subject: [PATCH] Added missing docblock endings. --- en/tutorials/composite-primary-keys.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/en/tutorials/composite-primary-keys.rst b/en/tutorials/composite-primary-keys.rst index a091f573b..0dadb245e 100644 --- a/en/tutorials/composite-primary-keys.rst +++ b/en/tutorials/composite-primary-keys.rst @@ -304,10 +304,10 @@ of products purchased and maybe even the current price. /** @Id @Column(type="integer") @GeneratedValue */ private $id; - /** @Column(type="string") + /** @Column(type="string") */ private $name; - /** @Column(type="decimal") + /** @Column(type="decimal") */ private $currentPrice; public function getCurrentPrice()