Skip to content

Commit 3d41826

Browse files
committed
Merge branch '2.1.x' into 2.2.x
Closes spring-projectsgh-19032
2 parents ba539d9 + 2c1e70d commit 3d41826

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

spring-boot-project/spring-boot-docs/src/main/asciidoc/appendix-configuration-metadata.adoc

+3-3
Original file line numberDiff line numberDiff line change
@@ -752,12 +752,12 @@ Consider the following class:
752752

753753
[source,java,indent=0,subs="verbatim,quotes,attributes"]
754754
----
755-
@ConfigurationProperties(prefix="acme.messaging")
755+
@ConfigurationProperties(prefix = "acme.messaging")
756756
public class MessagingProperties {
757757
758-
private List<String> addresses = new ArrayList<>(Arrays.asList("a", "b")) ;
758+
private List<String> addresses = new ArrayList<>(Arrays.asList("a", "b"));
759759
760-
private ContainerType = ContainerType.SIMPLE;
760+
private ContainerType containerType = ContainerType.SIMPLE;
761761
762762
// ... getter and setters
763763

0 commit comments

Comments
 (0)