From 46503d6a45e40203b87eed640412b57e2f01dc13 Mon Sep 17 00:00:00 2001 From: Stefano Cordio Date: Sun, 2 Nov 2025 03:46:10 +0100 Subject: [PATCH] =?UTF-8?q?Fix=20typo=20in=20@=E2=81=A0NumberFormat=20Java?= =?UTF-8?q?doc?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes gh-35742 Signed-off-by: Stefano Cordio --- .../org/springframework/format/annotation/NumberFormat.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-context/src/main/java/org/springframework/format/annotation/NumberFormat.java b/spring-context/src/main/java/org/springframework/format/annotation/NumberFormat.java index 8fe88b82229..299cc671716 100644 --- a/spring-context/src/main/java/org/springframework/format/annotation/NumberFormat.java +++ b/spring-context/src/main/java/org/springframework/format/annotation/NumberFormat.java @@ -36,7 +36,7 @@ import java.lang.annotation.Target; * annotation instance (the one most convenient one for your formatting needs). * When the {@link #pattern} attribute is specified, it takes precedence over * the {@link #style} attribute. When no annotation attributes are specified, - * the default format applied is style-based for either number of currency, + * the default format applied is style-based for either number or currency, * depending on the annotated field or method parameter type. * * @author Keith Donald