From 10c48bad7b79af84855f7c63590f1f426770ed6b Mon Sep 17 00:00:00 2001 From: Fran Moreno Date: Sun, 24 Mar 2013 02:07:05 +0100 Subject: [PATCH] [Docs] Fix field name in inversedby parameter --- docs/en/reference/working-with-associations.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/reference/working-with-associations.rst b/docs/en/reference/working-with-associations.rst index 7f46eba6a..0efba84f2 100644 --- a/docs/en/reference/working-with-associations.rst +++ b/docs/en/reference/working-with-associations.rst @@ -93,7 +93,7 @@ information about its type and if it's the owning or inverse side. /** * Bidirectional - Many Comments are authored by one user (OWNING SIDE) * - * @ManyToOne(targetEntity="User", inversedBy="authoredComments") + * @ManyToOne(targetEntity="User", inversedBy="commentsAuthored") */ private $author; }