Fix closing tag for listeners in documentation

This commit is contained in:
Seungrae
2024-06-04 23:43:19 +09:00
committed by Mahmoud Ben Hassine
parent a64b44efc1
commit 72ab701ac0
2 changed files with 4 additions and 4 deletions

View File

@@ -251,7 +251,7 @@ 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">
@@ -259,7 +259,7 @@ it with its own list of listeners to produce a
<listeners merge="true">
<listener ref="listenerTwo"/>
<listeners>
</listeners>
</job>
----

View File

@@ -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">
@@ -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>
----