From 436b15e873a0749bd02989de7e5c9de4fceb08d3 Mon Sep 17 00:00:00 2001 From: Thomas Landauer Date: Wed, 11 Oct 2017 22:45:42 +0200 Subject: [PATCH] Moved explanation out of PHP-Codeblock... ...to make it visible for XML and YML too. --- docs/en/reference/association-mapping.rst | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/en/reference/association-mapping.rst b/docs/en/reference/association-mapping.rst index fd791a0f3..faae8d551 100644 --- a/docs/en/reference/association-mapping.rst +++ b/docs/en/reference/association-mapping.rst @@ -33,7 +33,7 @@ inverse sides of associations ` Many-To-One, Unidirectional --------------------------- -A many-to-one association is the most common association between objects. +A many-to-one association is the most common association between objects. Example: Many Users have One Address: .. configuration-block:: @@ -46,7 +46,6 @@ A many-to-one association is the most common association between objects. // ... /** - * Many Users have One Address. * @ManyToOne(targetEntity="Address") * @JoinColumn(name="address_id", referencedColumnName="id") */