Merge branch '2.4.x' into 2.5.x

Closes gh-28424
This commit is contained in:
Phillip Webb
2021-10-21 11:27:29 -07:00
24 changed files with 37 additions and 37 deletions

View File

@@ -233,7 +233,7 @@ public class ConfigurationMetadataAnnotationProcessor extends AbstractProcessor
element.toString());
if (this.metadataCollector.hasSimilarGroup(group)) {
this.processingEnv.getMessager().printMessage(Kind.ERROR,
"Duplicate `@ConfigurationProperties` definition for prefix '" + prefix + "'", element);
"Duplicate @ConfigurationProperties definition for prefix '" + prefix + "'", element);
}
else {
this.metadataCollector.add(group);

View File

@@ -33,7 +33,7 @@ class GettingStartedDocumentationTests {
GradleBuild gradleBuild;
// NOTE: We can't run any `apply-plugin` tests because during a release the
// NOTE: We can't run any 'apply-plugin' tests because during a release the
// jar won't be there
@TestTemplate

View File

@@ -42,7 +42,7 @@ import org.springframework.util.MultiValueMap;
* layer.
* <p>
* Index files are designed to be compatible with YAML and may be read into a list of
* `Map&lt;String, List&lt;String&gt;&gt;` instances.
* {@code Map<String, List<String>>} instances.
*
* @author Madhura Bhave
* @author Andy Wilkinson