diff --git a/src/site/docbook/reference/readersAndWriters.xml b/src/site/docbook/reference/readersAndWriters.xml
index 5a36e2200..4d4da356f 100644
--- a/src/site/docbook/reference/readersAndWriters.xml
+++ b/src/site/docbook/reference/readersAndWriters.xml
@@ -249,7 +249,7 @@ public class FoobarWriter implements ItemWriter<FooBar>{
List itemProcessors = new ArrayList();
itemProcessors.add(new FooTransformer());
itemProcessors.add(new BarTransformer());
-compositeProcessor.setItemProcessors(itemProcessors);
+compositeProcessor.setDelegates(itemProcessors);
Just as with the previous example, the composite processor can be
configured into the Step:
@@ -265,7 +265,7 @@ compositeProcessor.setItemProcessors(itemProcessors);
<bean id="compositeItemProcessor"
class="org.springframework.batch.item.support.CompositeItemProcessor">
- <property name="itemProcessors">
+ <property name="delegates">
<list>
<bean class="..FooProcessor" />
<bean class="..BarProcessor" />
diff --git a/src/site/docbook/reference/retry.xml b/src/site/docbook/reference/retry.xml
index 555c91ced..5350b3c1b 100644
--- a/src/site/docbook/reference/retry.xml
+++ b/src/site/docbook/reference/retry.xml
@@ -337,7 +337,7 @@ template.execute(new RetryCallback<Foo>() {
<aop:config>
<aop:pointcut id="transactional"
- expression="execution(* com...*Service.remoteCall(..))" />
+ expression="execution(* com..*Service.remoteCall(..))" />
<aop:advisor pointcut-ref="transactional"
advice-ref="retryAdvice" order="-1"/>
</aop:config>