From 71158f4d96d8689c6a17b5b93a5a52bf72a83ea9 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Tue, 20 Apr 2021 18:56:18 +0200 Subject: [PATCH] Polishing See gh-26825 --- .../org/springframework/format/annotation/DateTimeFormat.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-context/src/main/java/org/springframework/format/annotation/DateTimeFormat.java b/spring-context/src/main/java/org/springframework/format/annotation/DateTimeFormat.java index 9063f52c75..612728c5ad 100644 --- a/spring-context/src/main/java/org/springframework/format/annotation/DateTimeFormat.java +++ b/spring-context/src/main/java/org/springframework/format/annotation/DateTimeFormat.java @@ -27,7 +27,7 @@ import java.lang.annotation.Target; * *

Supports formatting by style pattern, ISO date time pattern, or custom format pattern string. * Can be applied to {@link java.util.Date}, {@link java.util.Calendar}, {@link Long} (for - * millisecond timestamps) as well as JSR-310 {@code java.time}. + * millisecond timestamps) as well as JSR-310 {@code java.time} value types. * *

For style-based formatting, set the {@link #style} attribute to the desired style pattern code. * The first character of the code is the date style, and the second character is the time style. -- GitLab