diff --git a/src/main/java/tech/units/indriya/ComparableQuantity.java b/src/main/java/tech/units/indriya/ComparableQuantity.java index 1b98eab5..07b48543 100644 --- a/src/main/java/tech/units/indriya/ComparableQuantity.java +++ b/src/main/java/tech/units/indriya/ComparableQuantity.java @@ -46,7 +46,7 @@ * @author otaviojava * @author werner * @param the quantity type - * @version 2.5, August 20, 2024 + * @version 2.6, November 14, 2024 * @since 1.0 */ public interface ComparableQuantity> extends Quantity, Comparable>, QuantityConverter, Serializable { @@ -118,7 +118,7 @@ public interface ComparableQuantity> extends Quantity, boolean isGreaterThan(Quantity that); /** - * Compares two instances of {@link Quantity}, doing the conversion of unit if necessary. + * Compares two instances of {@link Quantity}, converting the unit if necessary. * * @param that * the {@code quantity} to be compared with this instance. @@ -129,7 +129,7 @@ public interface ComparableQuantity> extends Quantity, boolean isGreaterThanOrEqualTo(Quantity that); /** - * Compares two instances of {@link Quantity}, doing the conversion of unit if necessary. + * Compares two instances of {@link Quantity}, converting the unit if necessary. * * @param that * the {@code quantity} to be compared with this instance. @@ -140,7 +140,7 @@ public interface ComparableQuantity> extends Quantity, boolean isLessThan(Quantity that); /** - * Compares two instances of {@link Quantity}, doing the conversion of unit if necessary. + * Compares two instances of {@link Quantity}, converting the unit if necessary. * * @param that * the {@code quantity} to be compared with this instance.