[MATH-1237] Forgot one occurrence of the javadoc error.
This commit is contained in:
parent
435384cf13
commit
260a4392a8
|
@ -4017,7 +4017,7 @@ public class FastMath {
|
|||
|
||||
}
|
||||
|
||||
/** Finds r such that a = q b + r with 0 <= r < b if b > 0 and b < r <= 0 if b > 0.
|
||||
/** Finds r such that a = q b + r with 0 <= r < b if b > 0 and b < r <= 0 if b < 0.
|
||||
* <p>
|
||||
* This methods returns the same value as integer modulo when
|
||||
* a and b are same signs, but returns a different value when
|
||||
|
@ -4025,7 +4025,7 @@ public class FastMath {
|
|||
* </p>
|
||||
* @param a dividend
|
||||
* @param b divisor
|
||||
* @return r such that a = q b + r with 0 <= r < b if b > 0 and b < r <= 0 if b > 0
|
||||
* @return r such that a = q b + r with 0 <= r < b if b > 0 and b < r <= 0 if b < 0
|
||||
* @exception MathArithmeticException if b == 0
|
||||
* @see #floorDiv(long, long)
|
||||
* @since 3.4
|
||||
|
|
Loading…
Reference in New Issue