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

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


The following commit(s) were added to refs/heads/java8-simplify by this push:
     new 81b0f6e0 Copy-paste error
81b0f6e0 is described below

commit 81b0f6e081d1cb288809e47028625cf0dbfb2295
Author: Sebb <s...@apache.org>
AuthorDate: Sun Dec 24 13:26:35 2023 +0000

    Copy-paste error
---
 .../main/java/org/apache/commons/numbers/core/ArithmeticUtils.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/commons-numbers-core/src/main/java/org/apache/commons/numbers/core/ArithmeticUtils.java
 
b/commons-numbers-core/src/main/java/org/apache/commons/numbers/core/ArithmeticUtils.java
index 7afde103..07260c89 100644
--- 
a/commons-numbers-core/src/main/java/org/apache/commons/numbers/core/ArithmeticUtils.java
+++ 
b/commons-numbers-core/src/main/java/org/apache/commons/numbers/core/ArithmeticUtils.java
@@ -485,7 +485,7 @@ public final class ArithmeticUtils {
      * Returns the unsigned remainder from dividing the first argument
      * by the second where each argument and the result is interpreted
      * as an unsigned value.
-     * <p>This method uses the Java 1.8+ method {@link 
Long#remainderUnsigned(int, int)}.</p>
+     * <p>This method uses the Java 1.8+ method {@link 
Long#remainderUnsigned(long, long)}.</p>
      *
      * @param dividend the value to be divided
      * @param divisor the value doing the dividing
@@ -525,7 +525,7 @@ public final class ArithmeticUtils {
      * bit-wise identical if the two operands are regarded as both
      * being signed or both being unsigned. Therefore separate {@code
      * addUnsigned}, etc. methods are not provided.</p>
-     * <p>This method uses the Java 1.8+ method {@link 
Long#divideUnsigned(int, int)}.</p>
+     * <p>This method uses the Java 1.8+ method {@link 
Long#divideUnsigned(long, long)}.</p>
      *
      * @param dividend the value to be divided
      * @param divisor the value doing the dividing

Reply via email to