From 1146fc056cd1b85011124908412e7121c46bd3b2 Mon Sep 17 00:00:00 2001 From: Michael Minella Date: Tue, 17 Oct 2017 17:29:45 -0500 Subject: [PATCH] Polish --- spring-batch-docs/asciidoc/step.adoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-batch-docs/asciidoc/step.adoc b/spring-batch-docs/asciidoc/step.adoc index 4b6f893f4..a7e9aa00d 100644 --- a/spring-batch-docs/asciidoc/step.adoc +++ b/spring-batch-docs/asciidoc/step.adoc @@ -1,4 +1,4 @@ -:batch-asciidoc: http://docs.spring.io/spring-batch/reference/html/ +:batch-asciidoc: ./ :toc: left :toclevels: 4 @@ -37,7 +37,7 @@ Spring Batch uses a 'Chunk-oriented' processing style within its .Chunk-oriented Processing image::{batch-asciidoc}images/chunk-oriented-processing.png[Chunk Oriented Processing, scaledwidth="60%"] -The followig code shows the same concepts shown: +The following code shows the same concepts shown: [source, java] @@ -1455,7 +1455,7 @@ While this method of terminating a batch job is sufficient for These elements affect only the final statuses of the `Job`. For example, it is possible for every step in a job to have a status of `FAILED` but for the job to have a status of - `COMPLETED`. (It is also possible for the steps to have a status of `FAILED` and the job to have a status of `COMPLETED`.) + `COMPLETED`. [[endElement]]