Skip to content

Commit efba707

Browse files
committed
Fix title case capitalization
1 parent 5bc35e8 commit efba707

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

spring-boot-project/spring-boot-docs/src/docs/asciidoc/deployment.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -648,7 +648,7 @@ If you find you cannot customize something that you need to, use the `embeddedLa
648648

649649

650650
[[deployment-script-customization-when-it-written]]
651-
===== Customizing the Start Script when It Is Written
651+
===== Customizing the Start Script When It Is Written
652652
It often makes sense to customize elements of the start script as it is written into the jar file.
653653
For example, init.d scripts can provide a "`description`".
654654
Since you know the description up front (and it need not change), you may as well provide it when the jar is generated.

spring-boot-project/spring-boot-docs/src/docs/asciidoc/documentation-overview.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ If you find problems with the docs or if you want to improve them, please {sprin
4141

4242

4343
[[boot-documentation-upgrading]]
44-
== Upgrading from an Earlier Version
44+
== Upgrading From an Earlier Version
4545
Instructions for how to upgrade from earlier versions of Spring Boot are provided on the project {github-wiki}[wiki].
4646
Follow the links in the {github-wiki}#release-notes[release notes] section to find the version that you want to upgrade to.
4747

@@ -73,7 +73,7 @@ Ready to actually start using Spring Boot? <<using-spring-boot.adoc#using-boot,
7373

7474

7575

76-
== Learning about Spring Boot Features
76+
== Learning About Spring Boot Features
7777
Need more details about Spring Boot's core features?
7878
<<spring-boot-features.adoc#boot-features, The following content is for you>>:
7979

spring-boot-project/spring-boot-docs/src/docs/asciidoc/production-ready-features.adoc

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ This will happen automatically if you are using Spring Boot's Gradle plugin or i
530530

531531

532532
[[production-ready-endpoints-custom-input-conversion]]
533-
===== Input type conversion
533+
===== Input Type Conversion
534534
The parameters passed to endpoint operation methods are, if necessary, automatically converted to the required type.
535535
Before calling an operation method, the input received via JMX or an HTTP request is converted to the required types using an instance of `ApplicationConversionService` as well as any `Converter` or `GenericConverter` beans qualified with `@EndpointConverter`.
536536

@@ -633,7 +633,7 @@ The latter is typically used to perform authorization checks using its `isUserIn
633633

634634

635635
[[production-ready-endpoints-custom-servlet]]
636-
==== Servlet endpoints
636+
==== Servlet Endpoints
637637
A `Servlet` can be exposed as an endpoint by implementing a class annotated with `@ServletEndpoint` that also implements `Supplier<EndpointServlet>`.
638638
Servlet endpoints provide deeper integration with the Servlet container but at the expense of portability.
639639
They are intended to be used to expose an existing `Servlet` as an endpoint.
@@ -642,7 +642,7 @@ For new endpoints, the `@Endpoint` and `@WebEndpoint` annotations should be pref
642642

643643

644644
[[production-ready-endpoints-custom-controller]]
645-
==== Controller endpoints
645+
==== Controller Endpoints
646646
`@ControllerEndpoint` and `@RestControllerEndpoint` can be used to implement an endpoint that is only exposed by Spring MVC or Spring WebFlux.
647647
Methods are mapped using the standard annotations for Spring MVC and Spring WebFlux such as `@RequestMapping` and `@GetMapping`, with the endpoint's ID being used as a prefix for the path.
648648
Controller endpoints provide deeper integration with Spring's web frameworks but at the expense of portability.
@@ -1033,7 +1033,7 @@ In this case, a probe check could be successful even if the main application doe
10331033

10341034

10351035
[[production-ready-kubernetes-probes-external-state]]
1036-
==== Checking external state with Kubernetes Probes
1036+
==== Checking External State with Kubernetes Probes
10371037
Actuator configures the "liveness" and "readiness" probes as Health Groups; this means that all the <<production-ready-health-groups, Health Groups features>> are available for them.
10381038
You can, for example, configure additional Health Indicators:
10391039

@@ -1070,7 +1070,7 @@ Also, if an application is using Kubernetes https://kubernetes.io/docs/tasks/run
10701070

10711071

10721072
[[production-ready-kubernetes-probes-lifecycle]]
1073-
==== Application lifecycle and Probes states
1073+
==== Application Lifecycle and Probe States
10741074
An important aspect of the Kubernetes Probes support is its consistency with the application lifecycle.
10751075
There is a significant difference between the `AvailabilityState` which is the in-memory, internal state of the application
10761076
and the actual Probe which exposes that state: depending on the phase of application lifecycle, the Probe might not be available.
@@ -1653,7 +1653,7 @@ Spring Boot also <<production-ready-metrics-meter,configures built-in instrument
16531653

16541654

16551655
[[production-ready-metrics-export]]
1656-
=== Supported monitoring systems
1656+
=== Supported Monitoring Systems
16571657

16581658

16591659

@@ -2488,7 +2488,7 @@ To disable the auto-configured connection pool metrics, set the following proper
24882488

24892489

24902490
[[production-ready-metrics-custom]]
2491-
=== Registering custom metrics
2491+
=== Registering Custom Metrics
24922492
To register custom metrics, inject `MeterRegistry` into your component, as shown in the following example:
24932493

24942494
[source,java,indent=0]
@@ -2510,7 +2510,7 @@ A `MeterBinder` implementation can also be useful if you find that you repeatedl
25102510

25112511

25122512
[[production-ready-metrics-per-meter-properties]]
2513-
=== Customizing individual metrics
2513+
=== Customizing Individual Metrics
25142514
If you need to apply customizations to specific `Meter` instances you can use the `io.micrometer.core.instrument.config.MeterFilter` interface.
25152515
By default, all `MeterFilter` beans will be automatically applied to the micrometer `MeterRegistry.Config`.
25162516

@@ -2524,7 +2524,7 @@ include::{include-productionreadyfeatures}/metrics/MetricsFilterConfiguration.ja
25242524

25252525

25262526
[[production-ready-metrics-common-tags]]
2527-
==== Common tags
2527+
==== Common Tags
25282528
Common tags are generally used for dimensional drill-down on the operating environment like host, instance, region, stack, etc.
25292529
Commons tags are applied to all meters and can be configured as shown in the following example:
25302530

@@ -2544,7 +2544,7 @@ As the order of common tags cannot be guaranteed using this approach, Graphite u
25442544

25452545

25462546

2547-
==== Per-meter properties
2547+
==== Per-meter Properties
25482548
In addition to `MeterFilter` beans, it's also possible to apply a limited set of customization on a per-meter basis using properties.
25492549
Per-meter customizations apply to any all meter IDs that start with the given name.
25502550
For example, the following will disable any meters that have an ID starting with `example.remote`
@@ -2585,7 +2585,7 @@ For more details on concepts behind `percentiles-histogram`, `percentiles` and `
25852585

25862586

25872587
[[production-ready-metrics-endpoint]]
2588-
=== Metrics endpoint
2588+
=== Metrics Endpoint
25892589
Spring Boot provides a `metrics` endpoint that can be used diagnostically to examine the metrics collected by an application.
25902590
The endpoint is not available by default and must be exposed, see <<production-ready-endpoints-exposing-endpoints,exposing endpoints>> for more details.
25912591

@@ -2726,7 +2726,7 @@ If your Cloud Foundry UAA or Cloud Controller services use self-signed certifica
27262726

27272727

27282728

2729-
=== Custom context path
2729+
=== Custom Context Path
27302730
If the server's context-path has been configured to anything other than `/`, the Cloud Foundry endpoints will not be available at the root of the application.
27312731
For example, if `server.servlet.context-path=/app`, Cloud Foundry endpoints will be available at `/app/cloudfoundryapplication/*`.
27322732

0 commit comments

Comments
 (0)