Skip to content

Commit

Permalink
Fix closing tag for listeners in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Seungpang authored and fmbenhassine committed Dec 18, 2024
1 parent a64b44e commit 72ab701
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions spring-batch-docs/modules/ROOT/pages/job/configuring.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -251,15 +251,15 @@ it with its own list of listeners to produce a
<job id="baseJob" abstract="true">
<listeners>
<listener ref="listenerOne"/>
<listeners>
</listeners>
</job>
<job id="job1" parent="baseJob">
<step id="step1" parent="standaloneStep"/>
<listeners merge="true">
<listener ref="listenerTwo"/>
<listeners>
</listeners>
</job>
----

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ In the following example, the `Step` "concreteStep3", is created with two listen
<step id="listenersParentStep" abstract="true">
<listeners>
<listener ref="listenerOne"/>
<listeners>
</listeners>
</step>
<step id="concreteStep3" parent="listenersParentStep">
Expand All @@ -102,7 +102,7 @@ In the following example, the `Step` "concreteStep3", is created with two listen
</tasklet>
<listeners merge="true">
<listener ref="listenerTwo"/>
<listeners>
</listeners>
</step>
----

0 comments on commit 72ab701

Please sign in to comment.