Skip to content

Commit 0b89b2d

Browse files
committedNov 16, 2019
Merge branch '2.2.x'
Closes spring-projectsgh-19033
2 parents e01a1ba + 3d41826 commit 0b89b2d

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)