@@ -39,17 +39,17 @@ Use ERational from PeterO.Numbers/com.upokecenter.numbers.
3939## Methods
4040
4141* ` int compareTo(ExtendedRational other) ` <br >
42- Deprecated. Not documented yet .
42+ Deprecated. Compares this value to another .
4343* `static ExtendedRational Create(BigInteger numerator,
4444 BigInteger denominator)`<br >
4545 Deprecated. Creates a rational number with the given numerator and denominator.
4646* `static ExtendedRational Create(int numeratorSmall,
4747 int denominatorSmall)`<br >
4848 Deprecated. Creates a rational number with the given numerator and denominator.
4949* ` boolean equals(ExtendedRational other) ` <br >
50- Deprecated. Not documented yet .
50+ Deprecated. Checks whether this and another value are equal .
5151* ` boolean equals(Object obj) ` <br >
52- Deprecated. Not documented yet .
52+ Deprecated. Checks whether this and another value are equal .
5353* ` BigInteger getDenominator() ` <br >
5454 Deprecated. Gets this object's denominator.
5555* ` BigInteger getNumerator() ` <br >
@@ -228,7 +228,8 @@ Deprecated.
228228
229229** Returns:**
230230
231- * A 32-bit signed integer.
231+ * Less than 0 if this value is less than, 0 if equal to, or greater
232+ than 0 if greater than the other value.
232233
233234### equals
234235 public boolean equals(ExtendedRational other)
@@ -240,7 +241,7 @@ Deprecated.
240241
241242** Returns:**
242243
243- * either <code >true</code > or <code >false</code >.
244+ * Either <code >true</code > or <code >false</code >.
244245
245246### equals
246247 public boolean equals(Object obj)
@@ -256,7 +257,7 @@ Deprecated.
256257
257258** Returns:**
258259
259- * either <code >true</code > or <code >false</code >.
260+ * Either <code >true</code > or <code >false</code >.
260261
261262### hashCode
262263 public int hashCode()
0 commit comments