Skip to content

Commit 72ab701

Browse files
Seungpangfmbenhassine
authored andcommitted
Fix closing tag for listeners in documentation
1 parent a64b44e commit 72ab701

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

spring-batch-docs/modules/ROOT/pages/job/configuring.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,15 +251,15 @@ it with its own list of listeners to produce a
251251
<job id="baseJob" abstract="true">
252252
<listeners>
253253
<listener ref="listenerOne"/>
254-
<listeners>
254+
</listeners>
255255
</job>
256256
257257
<job id="job1" parent="baseJob">
258258
<step id="step1" parent="standaloneStep"/>
259259
260260
<listeners merge="true">
261261
<listener ref="listenerTwo"/>
262-
<listeners>
262+
</listeners>
263263
</job>
264264
----
265265

spring-batch-docs/modules/ROOT/pages/step/chunk-oriented-processing/inheriting-from-parent.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ In the following example, the `Step` "concreteStep3", is created with two listen
9393
<step id="listenersParentStep" abstract="true">
9494
<listeners>
9595
<listener ref="listenerOne"/>
96-
<listeners>
96+
</listeners>
9797
</step>
9898
9999
<step id="concreteStep3" parent="listenersParentStep">
@@ -102,7 +102,7 @@ In the following example, the `Step` "concreteStep3", is created with two listen
102102
</tasklet>
103103
<listeners merge="true">
104104
<listener ref="listenerTwo"/>
105-
<listeners>
105+
</listeners>
106106
</step>
107107
----
108108

0 commit comments

Comments
 (0)