Polish documentation headings

Title case should be used in all headings.
This commit is contained in:
Scott Frederick
2024-07-01 11:23:41 -05:00
parent 03a7f48ac0
commit 70e14d648d
27 changed files with 38 additions and 38 deletions

View File

@@ -242,7 +242,7 @@ You can override this behaviour as shown in the xref:packaging-oci-image.adoc#bu
[[build-image.customization.tags]]
=== Tags format
=== Tags Format
The values provided to the `tags` option should be *full* image references.
The accepted format is `[domainHost:port/][path/]name[:tag][@digest]`.

View File

@@ -90,7 +90,7 @@ include::example$running/application-plugin-main-class-name.gradle.kts[tags=main
[[running-your-application.passing-arguments]]
== Passing Arguments to your Application
== Passing Arguments to Your Application
Like all `JavaExec` tasks, arguments can be passed into `bootRun` from the command line using `--args='<arguments>'` when using Gradle 4.9 or later.
For example, to run your application with a profile named `dev` active the following command can be used:
@@ -105,7 +105,7 @@ See {url-gradle-javadoc}/org/gradle/api/tasks/JavaExec.html#setArgsString-java.l
[[running-your-application.passing-system-properties]]
== Passing System properties to your application
== Passing System Properties to Your application
Since `bootRun` is a standard `JavaExec` task, system properties can be passed to the application's JVM by specifying them in the build script.
To make that value of a system property to be configurable set its value using a {url-gradle-dsl}/org.gradle.api.Project.html#N14FE1[project property].