Skip to content

Commit

Permalink
422: Correct JavaDoc for ComparableQuantity
Browse files Browse the repository at this point in the history
Task-Url: #422
  • Loading branch information
keilw committed Nov 14, 2024
1 parent 61cae50 commit 7bb04f3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/tech/units/indriya/ComparableQuantity.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
* @author otaviojava
* @author werner
* @param <Q> the quantity type
* @version 2.5, August 20, 2024
* @version 2.6, November 14, 2024
* @since 1.0
*/
public interface ComparableQuantity<Q extends Quantity<Q>> extends Quantity<Q>, Comparable<Quantity<Q>>, QuantityConverter<Q>, Serializable {
Expand Down Expand Up @@ -118,7 +118,7 @@ public interface ComparableQuantity<Q extends Quantity<Q>> extends Quantity<Q>,
boolean isGreaterThan(Quantity<Q> 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<Q>} to be compared with this instance.
Expand All @@ -129,7 +129,7 @@ public interface ComparableQuantity<Q extends Quantity<Q>> extends Quantity<Q>,
boolean isGreaterThanOrEqualTo(Quantity<Q> 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<Q>} to be compared with this instance.
Expand All @@ -140,7 +140,7 @@ public interface ComparableQuantity<Q extends Quantity<Q>> extends Quantity<Q>,
boolean isLessThan(Quantity<Q> 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<Q>} to be compared with this instance.
Expand Down

0 comments on commit 7bb04f3

Please sign in to comment.