[MATH-1237] Forgot one occurrence of the javadoc error.

This commit is contained in:
Thomas Neidhart 2015-10-19 22:03:25 +02:00
parent 435384cf13
commit 260a4392a8
1 changed files with 2 additions and 2 deletions

View File

@ -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