Skip to content

Commit 72cad8c

Browse files
committed
Merge branch '4.0.x'
Closes gh-50214
2 parents eac7125 + afc61f9 commit 72cad8c

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ public class InvalidConfigurationPropertyValueException extends RuntimeException
4040
* including a {@code reason} why the value is invalid.
4141
* @param name the name of the property in canonical format
4242
* @param value the value of the property, can be {@code null}
43-
* @param reason a human-readable text that describes why the reason is invalid.
44-
* Starts with an upper-case and ends with a dot. Several sentences and carriage
45-
* returns are allowed.
43+
* @param reason a human-readable text that describes why the value is invalid. Starts
44+
* with an upper-case character and ends with a dot. Several sentences and lines are
45+
* allowed.
4646
*/
4747
public InvalidConfigurationPropertyValueException(String name, @Nullable Object value, @Nullable String reason) {
4848
this(name, value, reason, null);
@@ -53,9 +53,9 @@ public InvalidConfigurationPropertyValueException(String name, @Nullable Object
5353
* including a {@code reason} why the value is invalid.
5454
* @param name the name of the property in canonical format
5555
* @param value the value of the property, can be {@code null}
56-
* @param reason a human-readable text that describes why the reason is invalid.
57-
* Starts with an upper-case and ends with a dot. Several sentences and carriage
58-
* returns are allowed.
56+
* @param reason a human-readable text that describes why the value is invalid. Starts
57+
* with an upper-case character and ends with a dot. Several sentences and lines are
58+
* allowed.
5959
* @param cause the cause of the exception or {@code null}
6060
* @since 4.1.0
6161
*/

0 commit comments

Comments
 (0)