You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by er...@apache.org on 2019/11/29 12:02:45 UTC

[commons-numbers] 02/03: Javadoc.

This is an automated email from the ASF dual-hosted git repository.

erans pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-numbers.git

commit fc1291e1adb97705d1100cff43f8a8e3a32bad86
Author: Gilles Sadowski <gi...@harfang.homelinux.org>
AuthorDate: Fri Nov 29 12:52:09 2019 +0100

    Javadoc.
---
 .../main/java/org/apache/commons/numbers/fraction/BigFraction.java | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/commons-numbers-fraction/src/main/java/org/apache/commons/numbers/fraction/BigFraction.java b/commons-numbers-fraction/src/main/java/org/apache/commons/numbers/fraction/BigFraction.java
index fafa8c7..6484611 100644
--- a/commons-numbers-fraction/src/main/java/org/apache/commons/numbers/fraction/BigFraction.java
+++ b/commons-numbers-fraction/src/main/java/org/apache/commons/numbers/fraction/BigFraction.java
@@ -41,13 +41,10 @@ public final class BigFraction
     /** Serializable version identifier. */
     private static final long serialVersionUID = 20190701L;
 
-    /**
-     * The numerator of this fraction reduced to lowest terms. Negative if this
-     * fraction's value is negative.
-     */
+    /** The numerator of this fraction reduced to lowest terms. */
     private final BigInteger numerator;
 
-    /** The denominator of this fraction reduced to lowest terms. Always positive. */
+    /** The denominator of this fraction reduced to lowest terms. */
     private final BigInteger denominator;
 
     /**