Skip to content

Commit

Permalink
BATCH-2519: Fix TYPO
Browse files Browse the repository at this point in the history
    JIRA: https://jira.spring.io/browse/BATCH-2519

    * TYPO  `Posion` correction
  • Loading branch information
arthurportas committed Dec 26, 2017
1 parent 890e7d1 commit 19160b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spring-batch-docs/asciidoc/common-patterns.adoc
Expand Up @@ -99,7 +99,7 @@ public class PoisonPillItemWriter implements ItemWriter<T> {
public void write(T item) throws Exception {
if (isPoisonPill(item)) {
throw new PoisonPillException("Posion pill detected: " + item);
throw new PoisonPillException("Poison pill detected: " + item);
}
}
}
Expand Down

0 comments on commit 19160b4

Please sign in to comment.