[hibernate-commits] Hibernate SVN: r19829 - core/trunk/documentation/manual/src/main/docbook/en-US/content.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Mon Jun 28 05:47:17 EDT 2010


Author: stliu
Date: 2010-06-28 05:47:17 -0400 (Mon, 28 Jun 2010)
New Revision: 19829

Modified:
   core/trunk/documentation/manual/src/main/docbook/en-US/content/basic_mapping.xml
   core/trunk/documentation/manual/src/main/docbook/en-US/content/configuration.xml
Log:
HHH-5340 Typo in tutorial at web site

Modified: core/trunk/documentation/manual/src/main/docbook/en-US/content/basic_mapping.xml
===================================================================
--- core/trunk/documentation/manual/src/main/docbook/en-US/content/basic_mapping.xml	2010-06-25 16:07:19 UTC (rev 19828)
+++ core/trunk/documentation/manual/src/main/docbook/en-US/content/basic_mapping.xml	2010-06-28 09:47:17 UTC (rev 19829)
@@ -928,11 +928,11 @@
         name="propertyName"
         class="ClassName"
         mapped="true|false"
-        access="field|property|ClassName">
-        node="element-name|."
+        access="field|property|ClassName"
+        node="element-name|.">
 
         <key-property name="propertyName" type="typename" column="column_name"/>
-        <key-many-to-one name="propertyName class="ClassName" column="column_name"/>
+        <key-many-to-one name="propertyName" class="ClassName" column="column_name"/>
         ......
 &lt;/composite-id&gt;</programlisting>
 

Modified: core/trunk/documentation/manual/src/main/docbook/en-US/content/configuration.xml
===================================================================
--- core/trunk/documentation/manual/src/main/docbook/en-US/content/configuration.xml	2010-06-25 16:07:19 UTC (rev 19828)
+++ core/trunk/documentation/manual/src/main/docbook/en-US/content/configuration.xml	2010-06-28 09:47:17 UTC (rev 19829)
@@ -518,7 +518,7 @@
 
             <entry>Set this property to <literal>true</literal> if your JDBC
             driver returns correct row counts from
-            <literal>executeBatch()</literal>. Iit is usually safe to turn
+            <literal>executeBatch()</literal>. It is usually safe to turn
             this option on. Hibernate will then use batched DML for
             automatically versioned data. Defaults to
             <literal>false</literal>. <para> <emphasis
@@ -1598,7 +1598,7 @@
       one will be started and associated with that JTA transaction the first
       time you call <literal>sessionFactory.getCurrentSession()</literal>. The
       <literal>Session</literal>s retrieved via
-      <literal>getCurrentSession()</literal> in the<literal>"jta"</literal>
+      <literal>getCurrentSession()</literal> in the <literal>"jta"</literal>
       context are set to automatically flush before the transaction completes,
       close after the transaction completes, and aggressively release JDBC
       connections after each statement. This allows the



More information about the hibernate-commits mailing list