[hibernate-commits] Hibernate SVN: r20649 - core/branches/Branch_3_5/documentation/manual/src/main/docbook/en-US/content.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Thu Sep 16 02:39:05 EDT 2010


Author: stliu
Date: 2010-09-16 02:39:05 -0400 (Thu, 16 Sep 2010)
New Revision: 20649

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

Modified: core/branches/Branch_3_5/documentation/manual/src/main/docbook/en-US/content/basic_mapping.xml
===================================================================
--- core/branches/Branch_3_5/documentation/manual/src/main/docbook/en-US/content/basic_mapping.xml	2010-09-16 06:36:49 UTC (rev 20648)
+++ core/branches/Branch_3_5/documentation/manual/src/main/docbook/en-US/content/basic_mapping.xml	2010-09-16 06:39:05 UTC (rev 20649)
@@ -3553,14 +3553,14 @@
             Hibernate allows you to customize the SQL it uses to read and write 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:
+            invoke them for individual columns like this:</para>
             <programlisting role="XML"><![CDATA[<property name="creditCardNumber">
         <column 
           name="credit_card_num"
           read="decrypt(credit_card_num)"
           write="encrypt(?)"/>
 </property>]]></programlisting>
-        </para>
+        
         <para>
             Hibernate applies the custom expressions automatically whenever the property is
             referenced in a query. This functionality is similar to a derived-property



More information about the hibernate-commits mailing list