diff --git a/src/java.base/share/classes/java/math/BigInteger.java b/src/java.base/share/classes/java/math/BigInteger.java index 53db80f0417..43c401dd136 100644 --- a/src/java.base/share/classes/java/math/BigInteger.java +++ b/src/java.base/share/classes/java/math/BigInteger.java @@ -119,7 +119,7 @@ import jdk.internal.vm.annotation.Stable; * The range must be at least 1 to 2500000000. * * @apiNote - * As {@code BigInteger} values are + * As {@code BigInteger} values are * arbitrary precision integers, the algorithmic complexity of the * methods of this class varies and may be superlinear in the size of * the input. For example, a method like {@link intValue()} would be @@ -138,7 +138,7 @@ import jdk.internal.vm.annotation.Stable; * algorithms between the bounds of the naive and theoretical cases * include the Karatsuba multiplication * (O(n1.585)) and 3-way Toom-Cook - * multiplication (O(n1.465)). + * multiplication (O(n1.465)). * *
A particular implementation of {@link multiply(BigInteger) * multiply} is free to switch between different algorithms for