From 89466cb33cced133fe90904ce84a0523452ca9a7 Mon Sep 17 00:00:00 2001 From: juhyun Date: Wed, 3 Jan 2024 22:11:48 +0900 Subject: [PATCH] Fix typo in NumberFormat javadoc See gh-31938 --- .../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 c51f70b7ee48..2a8e5e4c8387 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 @@ -74,7 +74,7 @@ enum Style { /** * The default format for the annotated type: typically 'number' but possibly - * 'currency' for a money type (e.g. {@code javax.money.MonetaryAmount)}. + * 'currency' for a money type (e.g. {@code javax.money.MonetaryAmount}). * @since 4.2 */ DEFAULT,