diff --git a/openjpa-project/src/doc/manual/ref_guide_caching.xml b/openjpa-project/src/doc/manual/ref_guide_caching.xml
index 02c559dc7..61db7ce57 100644
--- a/openjpa-project/src/doc/manual/ref_guide_caching.xml
+++ b/openjpa-project/src/doc/manual/ref_guide_caching.xml
@@ -222,7 +222,10 @@ public class Employee {
caching
exclusions
- Entities may be explicitly excluded from the cache by providing a list of fully qualified class names in the ExcludedTypes argument. The entities provided via ExcludedTypes will not be cached regardless of the @DataCache annotation.
+ Entities may be explicitly excluded from the cache by providing a
+ list of fully qualified class names in the ExcludedTypes argument.
+ The entities provided via ExcludedTypes will not be cached
+ regardless of the @DataCache annotation.
@@ -231,7 +234,7 @@ public class Employee {
Exclude entities foo.bar.Person and foo.bar.Employee from the cache.
- <property name="openjpa.DataCache" value="true(ExcludedTypes=foo.bar.Person;foo.bar.Employee)"/>
+<property name="openjpa.DataCache" value="true(ExcludedTypes=foo.bar.Person;foo.bar.Employee)"/>
@@ -241,7 +244,11 @@ public class Employee {
caching
inclusions
- Entities may be explicitly included from the cache by providing a list of fully qualified class names in the Types argument. The entities provided via ExcludedTypes will not cached regardless of the @DataCache annotation. Any entities which are not included in this list will not be cached.
+ Entities may be explicitly included from the cache by providing a
+ list of fully qualified class names in the Types argument. The
+ entities provided via ExcludedTypes will not cached regardless
+ of the @DataCache annotation. Any entities which are not included
+ in this list will not be cached.
@@ -250,7 +257,7 @@ public class Employee {
Include only entity foo.bar.FullTimeEmployee from the cache.
- <property name="openjpa.DataCache" value="true(Types=foo.bar.FullTimeEmployee)"/>
+<property name="openjpa.DataCache" value="true(Types=foo.bar.FullTimeEmployee)"/>