Skip to content

Commit f280d12

Browse files
committed
Polish InvalidConfigurationPropertyValueException javadoc
Closes gh-50212
1 parent 054bbae commit f280d12

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/source/InvalidConfigurationPropertyValueException.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ public class InvalidConfigurationPropertyValueException extends RuntimeException
3838
* including a {@code reason} why the value is invalid.
3939
* @param name the name of the property in canonical format
4040
* @param value the value of the property, can be {@code null}
41-
* @param reason a human-readable text that describes why the reason is invalid.
42-
* Starts with an upper-case and ends with a dot. Several sentences and carriage
43-
* returns are allowed.
41+
* @param reason a human-readable text that describes why the value is invalid. Starts
42+
* with an upper-case character and ends with a dot. Several sentences and lines are
43+
* allowed.
4444
*/
4545
public InvalidConfigurationPropertyValueException(String name, Object value, String reason) {
4646
this(name, value, reason, null);

0 commit comments

Comments
 (0)