From db196ce5d8840a23a16ac5e1ce851fedffb94809 Mon Sep 17 00:00:00 2001 From: Juergen Hoeller Date: Tue, 13 Sep 2016 21:36:41 +0200 Subject: [PATCH] Correct ISO DateTime example Issue: SPR-14675 (cherry picked from commit d5c9cc6) --- .../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 3c84ff3928..e52d5d4f8b 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 @@ -104,7 +104,7 @@ public @interface DateTimeFormat { /** * The most common ISO DateTime Format {@code yyyy-MM-dd'T'HH:mm:ss.SSSZ}, - * e.g. "2000-10-31 01:30:00.000-05:00". + * e.g. "2000-10-31T01:30:00.000-05:00". *

This is the default if no annotation value is specified. */ DATE_TIME,