From da2a5da79cc9d30ef31b96435a99d99398421144 Mon Sep 17 00:00:00 2001 From: "Dimitrios (Dimi) Liapis" Date: Wed, 20 May 2020 12:38:10 +0200 Subject: [PATCH] Fix typo in documentation Issue #3643 --- spring-batch-docs/asciidoc/common-patterns.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-batch-docs/asciidoc/common-patterns.adoc b/spring-batch-docs/asciidoc/common-patterns.adoc index 0c1628176..6ebc84af1 100644 --- a/spring-batch-docs/asciidoc/common-patterns.adoc +++ b/spring-batch-docs/asciidoc/common-patterns.adoc @@ -92,7 +92,7 @@ propagation attribute a value of `REQUIRES_NEW`. [[stoppingAJobManuallyForBusinessReasons]] === Stopping a Job Manually for Business Reasons -Spring Batch provides a `stop()` method through the `JobLauncher` interface, but this is +Spring Batch provides a `stop()` method through the `JobOperator` interface, but this is really for use by the operator rather than the application programmer. Sometimes, it is more convenient or makes more sense to stop a job execution from within the business logic.