From dc1c8e5d66945de481f258a8669fa1de66bee3a0 Mon Sep 17 00:00:00 2001 From: Simran Gupta <72262854+simrangupta234@users.noreply.github.com> Date: Wed, 6 Oct 2021 10:58:58 +0530 Subject: [PATCH] Fixed issue #805 Misspelling of itemWriter corrected --- docs/src/main/asciidoc/batch-starter.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/main/asciidoc/batch-starter.adoc b/docs/src/main/asciidoc/batch-starter.adoc index dd372e6c..4f1e2016 100644 --- a/docs/src/main/asciidoc/batch-starter.adoc +++ b/docs/src/main/asciidoc/batch-starter.adoc @@ -68,7 +68,7 @@ To begin, the starter provides a set of properties that let you configure the ba With the above properties configured, you have a job with a single, chunk-based step. This chunk-based step reads, processes, and writes `Map` instances as the items. However, the step does not yet do anything. You need to configure an `ItemReader`, an -optional `ItemProcessor`, and an `ItemWiter` to give it something to do. To configure one +optional `ItemProcessor`, and an `ItemWriter` to give it something to do. To configure one of these, you can either use properties and configure one of the options that has provided autoconfiguration or you can configure your own with the standard Spring configuration mechanisms. @@ -530,4 +530,4 @@ Second, this starter lets you configure two properties on the writer. | Whether the items being passed to the writer are all to be sent as delete events to the topic. |=== -For more about the configuration options for the `KafkaItemWiter`, see the https://docs.spring.io/spring-batch/docs/4.3.x/api/org/springframework/batch/item/kafka/KafkaItemWriter.html[`KafkaItemWiter` documentation]. +For more about the configuration options for the `KafkaItemWriter`, see the https://docs.spring.io/spring-batch/docs/4.3.x/api/org/springframework/batch/item/kafka/KafkaItemWriter.html[`KafkaItemWiter` documentation].