From ed1e7382ab46b673362d7e6e747af20012ef7273 Mon Sep 17 00:00:00 2001 From: Anthony Vanelverdinghe Date: Wed, 8 Jun 2022 15:27:54 +0200 Subject: [PATCH] Fix typo in ImportCandidates javadoc See gh-31277 --- .../boot/context/annotation/ImportCandidates.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/annotation/ImportCandidates.java b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/annotation/ImportCandidates.java index 3db5cc44a78b..db7141de8237 100644 --- a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/annotation/ImportCandidates.java +++ b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/annotation/ImportCandidates.java @@ -61,7 +61,7 @@ public Iterator iterator() { * Loads the names of import candidates from the classpath. * * The names of the import candidates are stored in files named - * {@code META-INF/spring/full-qualified-annotation-name.import} on the classpath. + * {@code META-INF/spring/full-qualified-annotation-name.imports} on the classpath. * Every line contains the full qualified name of the candidate class. Comments are * supported using the # character. * @param annotation annotation to load