Skip to content

Commit 3834052

Browse files
committed
Fix Asciidoc syntax
1 parent b46bb72 commit 3834052

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

spring-boot-project/spring-boot-docs/src/main/asciidoc/howto.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ A custom implementation may define another order.
107107

108108
CAUTION: While using `@PropertySource` on your `@SpringBootApplication` may seem to be a convenient way to load a custom resource in the `Environment`, we do not recommend it.
109109
Such property sources are not added to the `Environment` until the application context is being refreshed.
110-
This is too late to configure certain properties such as `logging.*` and `spring.main.*` which are read before refresh begins.
110+
This is too late to configure certain properties such as `+logging.*+` and `+spring.main.*+` which are read before refresh begins.
111111

112112

113113

spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ Properties are considered in the following order:
353353
. Application properties packaged inside your jar (`application.properties` and YAML variants).
354354
. {spring-framework-api}/context/annotation/PropertySource.html[`@PropertySource`] annotations on your `@Configuration` classes.
355355
Please note that such property sources are not added to the `Environment` until the application context is being refreshed.
356-
This is too late to configure certain properties such as `logging.*` and `spring.main.*` which are read before refresh begins.
356+
This is too late to configure certain properties such as `+logging.*+` and `+spring.main.*+` which are read before refresh begins.
357357
. Default properties (specified by setting `SpringApplication.setDefaultProperties`).
358358

359359
To provide a concrete example, suppose you develop a `@Component` that uses a `name` property, as shown in the following example:

0 commit comments

Comments
 (0)