correct the wrong spell

git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18797 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
Strong Liu 2010-02-14 14:16:50 +00:00
parent 8e2797d7c6
commit 1ec662e924
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ em.find( Cat.class, new Long(catId) );</programlisting>
<para>In some cases, you don't really want to load the object state, but
just having a reference to it (ie a proxy). You can get this reference
using the <literal>getReference()</literal> method. This is especially
useful to link a child to its parent wo having to load the parent.</para>
useful to link a child to its parent without having to load the parent.</para>
<programlisting>child = new Child();
child.SetName("Henry");