From 69c4428c03acd3de52f3fa2069392072adab12de Mon Sep 17 00:00:00 2001 From: Anderson Castro Date: Tue, 11 Nov 2025 16:39:34 -0300 Subject: [PATCH] docs: Fixed Javadoc for 'MonetaryAmount.isLessThan(MonetaryAmount)' --- src/main/java/javax/money/MonetaryAmount.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/javax/money/MonetaryAmount.java b/src/main/java/javax/money/MonetaryAmount.java index 90e3d07d..c73d1312 100644 --- a/src/main/java/javax/money/MonetaryAmount.java +++ b/src/main/java/javax/money/MonetaryAmount.java @@ -213,7 +213,7 @@ default MonetaryAmount with(MonetaryOperator operator){ * zeroes and different numeric capabilities. * * @param amount the {@link MonetaryAmount} to be compared with this instance. - * @return {@code true} if {@code amount < this}. + * @return {@code true} if {@code this < amount}. * @throws MonetaryException if the amount's currency is not equal to the currency of this instance. */ boolean isLessThan(MonetaryAmount amount);