Skip to content

Commit 70e14d6

Browse files
Polish documentation headings
Title case should be used in all headings.
1 parent 03a7f48 commit 70e14d6

File tree

27 files changed

+38
-38
lines changed

27 files changed

+38
-38
lines changed

spring-boot-project/spring-boot-actuator-autoconfigure/src/docs/antora/modules/api/pages/rest/actuator/integrationgraph.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[[integrationgraph]]
2-
= Spring Integration graph (`integrationgraph`)
2+
= Spring Integration Graph (`integrationgraph`)
33

44
The `integrationgraph` endpoint exposes a graph containing all Spring Integration components.
55

spring-boot-project/spring-boot-actuator-autoconfigure/src/docs/antora/modules/api/pages/rest/actuator/metrics.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ include::partial$rest/actuator/metrics/metric-with-tags/query-parameters.adoc[]
5555

5656

5757
[[metrics.retrieving-metric.response-structure]]
58-
=== Response structure
58+
=== Response Structure
5959

6060
The response contains details of the metric.
6161
The following table describes the structure of the response:

spring-boot-project/spring-boot-actuator-autoconfigure/src/docs/antora/modules/api/pages/rest/actuator/sbom.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The `sbom` endpoint provides information about the software bill of materials (S
66

77

88
[[sbom.retrieving-available-sboms]]
9-
== Retrieving the available SBOMs
9+
== Retrieving the Available SBOMs
1010

1111
To retrieve the available SBOMs, make a `GET` request to `/actuator/sbom`, as shown in the following curl-based example:
1212

@@ -30,7 +30,7 @@ include::partial$rest/actuator/sbom/response-fields.adoc[]
3030

3131

3232
[[sbom.retrieving-single-sbom]]
33-
== Retrieving a single SBOM
33+
== Retrieving a Single SBOM
3434

3535
To retrieve the available SBOMs, make a `GET` request to `/actuator/sbom/\{id}`, as shown in the following curl-based example:
3636

spring-boot-project/spring-boot-docs/src/docs/antora/modules/how-to/pages/aot.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[[howto.aot]]
2-
= Ahead-of-time processing
2+
= Ahead-of-Time Processing
33

44
A number of questions often arise when people use the ahead-of-time processing of Spring Boot applications.
55
This section addresses those questions.

spring-boot-project/spring-boot-docs/src/docs/antora/modules/how-to/pages/batch.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ This provides only one argument to the batch job: `someParameter=someValue`.
6868

6969

7070
[[howto.batch.restarting-a-failed-job]]
71-
== Restarting a stopped or failed Job
71+
== Restarting a Stopped or Failed Job
7272

7373
To restart a failed `Job`, all parameters (identifying and non-identifying) must be re-specified on the command line.
7474
Non-identifying parameters are *not* copied from the previous execution.

spring-boot-project/spring-boot-docs/src/docs/antora/modules/how-to/pages/class-data-sharing.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The buildpack environment variable `BP_SPRING_AOT_ENABLED` can also be set to `t
1818
The Paketo Buildpack for Spring Boot https://github.com/paketo-buildpacks/spring-boot?tab=readme-ov-file#configuration[documentation] has information on other configuration options that can be enabled with builder environment variables, like `CDS_TRAINING_JAVA_TOOL_OPTIONS` that allows to override the default `JAVA_TOOL_OPTIONS`, only for the CDS training run.
1919

2020
[[howto.class-data-sharing.training-run-configuration]]
21-
== Preventing remote services interaction during the training run
21+
== Preventing Remote Services Interaction During the Training Run
2222

2323
When performing the training run, it may be needed to customize the Spring Boot application configuration to prevent connections to remote services that may happen before the Spring lifecycle is started.
2424
This can typically happen with early database interactions and can be handled via related configuration that can be applied by default to your application (or specifically to the training run) to prevent such interactions, see https://github.com/spring-projects/spring-lifecycle-smoke-tests/blob/main/README.adoc#training-run-configuration[related documentation].

spring-boot-project/spring-boot-docs/src/docs/antora/modules/how-to/pages/data-initialization.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ See xref:api:java/org/springframework/boot/autoconfigure/liquibase/LiquibaseProp
190190

191191

192192
[[howto.data-initialization.migration-tool.flyway-tests]]
193-
=== Use Flyway for test-only migrations
193+
=== Use Flyway for Test-only Migrations
194194

195195
If you want to create Flyway migrations which populate your test database, place them in `src/test/resources/db/migration`.
196196
A file named, for example, `src/test/resources/db/migration/V9999__test-data.sql` will be executed after your production migrations and only if you're running the tests.
@@ -200,7 +200,7 @@ This file will not be packaged in your uber jar or your container.
200200

201201

202202
[[howto.data-initialization.migration-tool.liquibase-tests]]
203-
=== Use Liquibase for test-only migrations
203+
=== Use Liquibase for Test-only Migrations
204204

205205
If you want to create Liquibase migrations which populate your test database, you have to create a test changelog which also includes the production changelog.
206206

spring-boot-project/spring-boot-docs/src/docs/antora/modules/how-to/pages/docker-compose.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ With this Docker Compose file in place, the JDBC URL used is `jdbc:postgresql://
3232

3333

3434
[[howto.docker-compose.sharing-services]]
35-
== Sharing services between multiple applications
35+
== Sharing Services Between Multiple Applications
3636

3737
If you want to share services between multiple applications, create the `compose.yaml` file in one of the applications and then use the configuration property configprop:spring.docker.compose.file[] in the other applications to reference the `compose.yaml` file.
3838
You should also set configprop:spring.docker.compose.lifecycle-management[] to `start-only`, as it defaults to `start-and-stop` and stopping one application would shut down the shared services for the other still running applications as well.

spring-boot-project/spring-boot-docs/src/docs/antora/modules/how-to/pages/jersey.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55

66
[[howto.jersey.spring-security]]
7-
== Secure Jersey endpoints with Spring Security
7+
== Secure Jersey Endpoints with Spring Security
88

99
Spring Security can be used to secure a Jersey-based web application in much the same way as it can be used to secure a Spring MVC-based web application.
1010
However, if you want to use Spring Security's method-level security with Jersey, you must configure Jersey to use `setStatus(int)` rather `sendError(int)`.

spring-boot-project/spring-boot-docs/src/docs/antora/modules/how-to/pages/native-image/testing-native-applications.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ For native image testing, you're generally looking to ensure that the following
1414

1515

1616
[[howto.native-image.testing.with-the-jvm]]
17-
== Testing Ahead-of-time Processing With the JVM
17+
== Testing Ahead-of-Time Processing With the JVM
1818

1919
When a Spring Boot application runs, it attempts to detect if it is running as a native image.
2020
If it is running as a native image, it will initialize the application using the code that was generated during at build-time by the Spring AOT engine.

0 commit comments

Comments
 (0)