From 58fc3373157b64bd32698442457dad6eeae880bd Mon Sep 17 00:00:00 2001 From: Madhura Bhave Date: Wed, 2 Oct 2019 14:30:49 -0700 Subject: [PATCH] Polish --- .../boot/context/properties/ConfigurationProperties.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/ConfigurationProperties.java b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/ConfigurationProperties.java index 0aaaff3503..00fb040d7d 100644 --- a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/ConfigurationProperties.java +++ b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/ConfigurationProperties.java @@ -29,7 +29,7 @@ import org.springframework.core.annotation.AliasFor; * {@code @Bean} method in a {@code @Configuration} class if you want to bind and validate * some external Properties (e.g. from a .properties file). *

- * Binding can is either performed by calling setters on the annotated class or, if + * Binding is either performed by calling setters on the annotated class or, if * {@link ConstructorBinding @ConstructorBinding} is in use, by binding to the constructor * parameters. *