From 9727f4bdddc071e6f59806087339f345405ab004 Mon Sep 17 00:00:00 2001 From: Brian Burkhalter Date: Thu, 16 Nov 2023 16:55:46 +0000 Subject: [PATCH] 8320199: Fix HTML 5 errors in java.math.BigInteger Reviewed-by: naoto, darcy, lancea, iris --- src/java.base/share/classes/java/math/BigInteger.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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