--- old/src/java.base/share/classes/java/math/BigInteger.java 2020-07-10 15:54:53.060803545 -0700 +++ new/src/java.base/share/classes/java/math/BigInteger.java 2020-07-10 15:54:52.692813159 -0700 @@ -54,7 +54,7 @@ * and a few other miscellaneous operations. * *

Semantics of arithmetic operations exactly mimic those of Java's integer - * arithmetic operators, as defined in The Java™ Language Specification. + * arithmetic operators, as defined in The Java Language Specification. * For example, division by zero throws an {@code ArithmeticException}, and * division of a negative by a positive yields a negative (or zero) remainder. * @@ -4152,7 +4152,7 @@ * conversion is analogous to a * narrowing primitive conversion from {@code long} to * {@code int} as defined in - * The Java™ Language Specification: + * The Java Language Specification: * if this BigInteger is too big to fit in an * {@code int}, only the low-order 32 bits are returned. * Note that this conversion can lose information about the @@ -4174,7 +4174,7 @@ * conversion is analogous to a * narrowing primitive conversion from {@code long} to * {@code int} as defined in - * The Java™ Language Specification: + * The Java Language Specification: * if this BigInteger is too big to fit in a * {@code long}, only the low-order 64 bits are returned. * Note that this conversion can lose information about the @@ -4198,7 +4198,7 @@ * conversion is similar to the * narrowing primitive conversion from {@code double} to * {@code float} as defined in - * The Java™ Language Specification: + * The Java Language Specification: * if this BigInteger has too great a magnitude * to represent as a {@code float}, it will be converted to * {@link Float#NEGATIVE_INFINITY} or {@link @@ -4283,7 +4283,7 @@ * conversion is similar to the * narrowing primitive conversion from {@code double} to * {@code float} as defined in - * The Java™ Language Specification: + * The Java Language Specification: * if this BigInteger has too great a magnitude * to represent as a {@code double}, it will be converted to * {@link Double#NEGATIVE_INFINITY} or {@link