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

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Thu Sep 16 02:36:50 EDT 2010


Author: stliu
Date: 2010-09-16 02:36:49 -0400 (Thu, 16 Sep 2010)
New Revision: 20648

Modified:
   core/trunk/documentation/manual/src/main/docbook/en-US/content/basic_mapping.xml
Log:
HHH-5568 correct wrong format in document

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-09-15 21:27:53 UTC (rev 20647)
+++ core/trunk/documentation/manual/src/main/docbook/en-US/content/basic_mapping.xml	2010-09-16 06:36:49 UTC (rev 20648)
@@ -5777,13 +5777,15 @@
     the values of columns mapped to <link
     linkend="mapping-declaration-property">simple properties</link>. For
     example, if your database provides a set of data encryption functions, you
-    can invoke them for individual columns like this: <programlisting
+    can invoke them for individual columns like this: 
+</para>
+<programlisting
     role="XML">&lt;property name="creditCardNumber"&gt;
         &lt;column 
           name="credit_card_num"
           read="decrypt(credit_card_num)"
           write="encrypt(?)"/&gt;
-&lt;/property&gt;</programlisting></para>
+&lt;/property&gt;</programlisting>
 
     <para>Hibernate applies the custom expressions automatically whenever the
     property is referenced in a query. This functionality is similar to a



More information about the hibernate-commits mailing list