Documentation @JoinTable error in section 2.4.6.2.5
---------------------------------------------------
Key: HCANN-15
URL:
http://opensource.atlassian.com/projects/hibernate/browse/HCANN-15
Project: Hibernate Commons Annotations
Issue Type: Bug
Reporter: david durham
Priority: Minor
The documentation has the following example:
...
@JoinTable(
table=@Table(name="BoyFavoriteNumbers"),
joinColumns = @JoinColumn(name="BoyId")
)
..
believe it should be:
...
@JoinTable(
name="BoyFavoriteNumbers",
joinColumns = @JoinColumn(name="BoyId")
)
..
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://opensource.atlassian.com/projects/hibernate/secure/Administrators....
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira