From a1c45f5dad7f061b492d660f33cadf855b836a31 Mon Sep 17 00:00:00 2001 From: dhgarrette Date: Thu, 2 Apr 2009 04:11:18 +0000 Subject: [PATCH] Fixed programlisting that was too wide. --- src/site/docbook/reference/domain.xml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/site/docbook/reference/domain.xml b/src/site/docbook/reference/domain.xml index 42365c947..28df84eda 100644 --- a/src/site/docbook/reference/domain.xml +++ b/src/site/docbook/reference/domain.xml @@ -1019,13 +1019,15 @@ xmlns:beans="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation=" - http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd - http://www.springframework.org/schema/batch http://www.springframework.org/schema/batch/spring-batch-2.0.xsd"> + http://www.springframework.org/schema/beans + http://www.springframework.org/schema/beans/spring-beans-2.0.xsd + http://www.springframework.org/schema/batch + http://www.springframework.org/schema/batch/spring-batch-2.0.xsd"> <job id="ioSampleJob"> <step id="step1"> <tasklet> - <chunk reader="itemReader" processor="itemProcessor" writer="itemWriter" commit-interval="2"/> + <chunk reader="itemReader" writer="itemWriter" commit-interval="2"/> </tasklet> </step> </job>