From 10d335f7aefb21ba91e3a02a12b89c0b3b993e30 Mon Sep 17 00:00:00 2001 From: DavidGrath <49921604+DavidGrath@users.noreply.github.com> Date: Wed, 18 Nov 2020 12:40:19 +0100 Subject: [PATCH] Fixed typo in batch.adoc Changed the following on line 121 - `Step`. The following example shows how to configure the `DefaultStepExecutionHandler`: + `Step`. The following example shows how to configure the `DeployerStepExecutionHandler`: --- spring-cloud-task-docs/src/main/asciidoc/batch.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-cloud-task-docs/src/main/asciidoc/batch.adoc b/spring-cloud-task-docs/src/main/asciidoc/batch.adoc index 9e505ba0..7b6a3833 100644 --- a/spring-cloud-task-docs/src/main/asciidoc/batch.adoc +++ b/spring-cloud-task-docs/src/main/asciidoc/batch.adoc @@ -118,7 +118,7 @@ which the über-jar is located. Both the manager and worker are expected to have into the same data store being used as the job repository and task repository. Once the underlying infrastructure has bootstrapped the Spring Boot jar and Spring Boot has launched the `DeployerStepExecutionHandler`, the step handler executes the requested -`Step`. The following example shows how to configure the `DefaultStepExecutionHandler`: +`Step`. The following example shows how to configure the `DeployerStepExecutionHandler`: [source,java] ----