diff --git a/docs/src/reference/docbook/reference/region.xml b/docs/src/reference/docbook/reference/region.xml
index d475b950..91730401 100644
--- a/docs/src/reference/docbook/reference/region.xml
+++ b/docs/src/reference/docbook/reference/region.xml
@@ -368,7 +368,7 @@
<!-- nested cache listener declaration -->
<bean class="some.pkg.AnotherSimpleCacheListener"/>
</gfe:cache-listener>
-
+
<bean id="c-listener" class="some.pkg.SimpleCacheListener"/>
</gfe:replicated-region>
The following example uses an alternate form of the
@@ -385,7 +385,7 @@
<gfe:replicated-region id="region-with-one listener">
<gfe:cache-listener ref="c-listener"/>
</gfe:replicated-region>
-
+
<bean id="c-listener" class="some.pkg.SimpleCacheListener"/>
</beans>
@@ -447,15 +447,15 @@
naturally declared as a child element of a region. The subregion's name
attribute is the simple name. The above example might be configured as:
<beans>
-
+
<gfe:replicated-region name="Customer">
<gfe:replicated-region name="Address"/>
</gfe:replicated-region>
-
+
<gfe:replicated-region name="Employee">
<gfe:replicated-region name="Address"/>
</gfe:replicated-region>
-
+
</beans>Note that the
id
attribute is not permitted for a subregion. The subregions
@@ -661,7 +661,7 @@
a quick example on setting up a partition region with 2 redundant
copies:
- <!-- bean definition named 'distributed-partition' backed by a region named 'redundant' with 2 copies
+ <!-- bean definition named 'distributed-partition' backed by a region named 'redundant' with 2 copies
and a nested resolver declaration -->
<gfe:partitioned-region id="distributed-partition" copies="2" total-buckets="4" name="redundant">
<gfe:partition-resolver>
@@ -861,7 +861,7 @@ and a nested resolver declaration -->
<gfe:client-region id="complex" pool-name="gemfire-pool">
<gfe:key-interest durable="true" result-policy="KEYS">
<bean id="key" class="java.lang.String">
- <constructor-arg value="someKey" />
+ <constructor-arg value="someKey" />
</bean>
</gfe:key-interest>
<gfe:regex-interest pattern=".*" receive-values="false"/>