From 86ce4741087f56fe9585c72b02ae96eb99309143 Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Thu, 27 Apr 2017 17:47:48 -0700 Subject: [PATCH] Fix malformed javadoc See gh-9000 --- .../context/properties/source/ConfigurationPropertyName.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot/src/main/java/org/springframework/boot/context/properties/source/ConfigurationPropertyName.java b/spring-boot/src/main/java/org/springframework/boot/context/properties/source/ConfigurationPropertyName.java index 1680b6a6165..1e2d133e993 100644 --- a/spring-boot/src/main/java/org/springframework/boot/context/properties/source/ConfigurationPropertyName.java +++ b/spring-boot/src/main/java/org/springframework/boot/context/properties/source/ConfigurationPropertyName.java @@ -29,8 +29,8 @@ import org.springframework.util.StringUtils; /** * A configuration property name composed of elements separated by dots. Names may contain - * the characters ("{@code a-z}" "{@code 0-9}") & "{@code -}", they must be lower-case and - * must start with a letter. The "{@code -}" is used purely for formatting, i.e. + * the characters "{@code a-z}" "{@code 0-9}") and "{@code -}", they must be lower-case + * and must start with a letter. The "{@code -}" is used purely for formatting, i.e. * "{@code foo-bar}" and "{@code foobar}" are considered equivalent. *

* The "{@code [}" and "{@code ]}" characters may be used to indicate an associative