Merge pull request #557 from arthurportas/3.0.x

BATCH-2519: Fix TYPO
This commit is contained in:
Mahmoud Ben Hassine
2018-01-10 13:27:02 +01:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -89,7 +89,7 @@
public void write(T item) throws Exception {
if (isPoisonPill(item)) {
throw new PoisonPillException("Posion pill detected: " + item);
throw new PoisonPillException("Poison pill detected: " + item);
}
}

View File

@@ -916,7 +916,7 @@ itemWriter.write(items);</programlisting>
<para><classname>ItemReadListener</classname>,
<classname>ItemProcessListener</classname>, and
<classname>ItemWriteListner</classname> all provide mechanisms for
<classname>ItemWriteListener</classname> all provide mechanisms for
being notified of errors, but none will inform you that a record has
actually been skipped. <methodname>onWriteError</methodname>, for
example, will be called even if an item is retried and successful. For