Skip to content

Commit b88a628

Browse files
committed
Fix some misspelling in the docs
1 parent a2d61f8 commit b88a628

File tree

6 files changed

+5
-5
lines changed

6 files changed

+5
-5
lines changed

spring-batch-docs/modules/ROOT/nav.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
** xref:spring-batch-integration/available-attributes-of-the-job-launching-gateway.adoc[]
5454
** xref:spring-batch-integration/providing-feedback-with-informational-messages.adoc[Providing Feedback with Informational Messages]
5555
** xref:spring-batch-integration/asynchronous-processing.adoc[Asynchronous Processors]
56-
** xref:spring-batch-integration/externelazing-execution.adoc[Externalizing Batch Process Execution]
56+
** xref:spring-batch-integration/externalizing-execution.adoc[Externalizing Batch Process Execution]
5757
* xref:spring-batch-observability.adoc[]
5858
** xref:spring-batch-observability/micrometer.adoc[]
5959
** xref:spring-batch-observability/jfr.adoc[]

spring-batch-docs/modules/ROOT/pages/job/configuring-repository.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ is provided for you.
2929
====
3030
Java::
3131
+
32-
When using `@EnableBatchProcessing`, a `ResourcelssJobRepository` is provided for you.
32+
When using `@EnableBatchProcessing`, a `ResourcelessJobRepository` is provided for you.
3333
This section describes how to customize it. Spring Batch provides two implementations
3434
of the `JobRepository` interface which are backed by a database: a JDBC implementation
3535
(which can be used with any JDBC-compliant database) and a MongoDB implementation. These two

spring-batch-docs/modules/ROOT/pages/scalability.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ message. JMS is the obvious candidate, but other options (such as JavaSpaces) ex
292292
the grid computing and shared memory product space.
293293

294294
See the section on
295-
xref:spring-batch-integration/externelazing-execution.adoc#remote-chunking[Spring Batch Integration - Remote Chunking]
295+
xref:spring-batch-integration/externalizing-execution.adoc#remote-chunking[Spring Batch Integration - Remote Chunking]
296296
for more detail.
297297

298298
[[partitioning]]

spring-batch-docs/modules/ROOT/pages/spring-batch-integration.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ This section covers the following key concepts:
3737
* xref:spring-batch-integration/available-attributes-of-the-job-launching-gateway.adoc[Available Attributes of the Job-Launching Gateway]
3838
* xref:spring-batch-integration/providing-feedback-with-informational-messages.adoc[Providing Feedback with Informational Messages]
3939
* xref:spring-batch-integration/asynchronous-processing.adoc[Asynchronous Processors]
40-
* xref:spring-batch-integration/externelazing-execution.adoc[Externalizing Batch Process Execution]
40+
* xref:spring-batch-integration/externalizing-execution.adoc[Externalizing Batch Process Execution]

spring-batch-docs/modules/ROOT/pages/testing.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ and verifies the end result.
6868
Consider an example of a batch job that reads from the database and writes to a flat file.
6969
The test method begins by setting up the database with test data. It clears the `CUSTOMER`
7070
table and then inserts 10 new records. The test then launches the `Job` by using the
71-
`srartJob()` method. The `srartJob()` method is provided by the `JobOperatorTestUtils`
71+
`startJob()` method. The `startJob()` method is provided by the `JobOperatorTestUtils`
7272
class. The `JobOperatorTestUtils` class also provides the `startJob(JobParameters)`
7373
method, which lets the test give particular parameters. The `srartJob()` method
7474
returns the `JobExecution` object, which is useful for asserting particular information

0 commit comments

Comments
 (0)