From 9439494923a32b9f5bac80bb25655e0be76d2fc1 Mon Sep 17 00:00:00 2001 From: Yanming Zhou Date: Wed, 5 Jul 2023 14:59:56 +0800 Subject: [PATCH] Polish formatting in "Running Spring Batch Jobs on Startup" See gh-36225 --- .../spring-boot-docs/src/docs/asciidoc/howto/batch.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/howto/batch.adoc b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/howto/batch.adoc index 91493eefd4f..f2113a06974 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/howto/batch.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/howto/batch.adoc @@ -26,7 +26,7 @@ Spring Batch auto-configuration is enabled by adding `spring-boot-starter-batch` If a single `Job` is found in the application context, it is executed on startup (see {spring-boot-autoconfigure-module-code}/batch/JobLauncherApplicationRunner.java[`JobLauncherApplicationRunner`] for details). If multiple `Job` beans are found, the job that should be executed must be specified using configprop:spring.batch.job.name[]. -To disable running a `Job` found in the application context, set the configprop:spring.batch.job.enabled[] to `false.` +To disable running a `Job` found in the application context, set the configprop:spring.batch.job.enabled[] to `false`. See {spring-boot-autoconfigure-module-code}/batch/BatchAutoConfiguration.java[BatchAutoConfiguration] for more details.