From 662f7f9cdd2a0f5f5331d82c83a2ac1290482fd9 Mon Sep 17 00:00:00 2001 From: Stefano Cordio Date: Sun, 2 Nov 2025 03:46:10 +0100 Subject: [PATCH] Fix typo in `@NumberFormat` Javadoc 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 8fe88b82229f..299cc6717161 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 @@ * 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