Skip to content

Commit

Permalink
8320199: Fix HTML 5 errors in java.math.BigInteger
Browse files Browse the repository at this point in the history
Reviewed-by: naoto, darcy, lancea, iris
  • Loading branch information
Brian Burkhalter committed Nov 16, 2023
1 parent d6aa7c8 commit 9727f4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/java.base/share/classes/java/math/BigInteger.java
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
* The range must be at least 1 to 2<sup>500000000</sup>.
*
* @apiNote
* <a id=algorithmicComplexity>As {@code BigInteger} values are
* <span id="algorithmicComplexity">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
Expand All @@ -138,7 +138,7 @@
* algorithms between the bounds of the naive and theoretical cases
* include the Karatsuba multiplication
* (<i>O</i>(<i>n<sup>1.585</sup></i>)) and 3-way Toom-Cook
* multiplication (<i>O</i>(<i>n<sup>1.465</sup></i>)).</a>
* multiplication (<i>O</i>(<i>n<sup>1.465</sup></i>)).</span>
*
* <p>A particular implementation of {@link multiply(BigInteger)
* multiply} is free to switch between different algorithms for
Expand Down

1 comment on commit 9727f4b

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.