8311122: Fix typos in java.base

Reviewed-by: darcy, naoto, mchung, iris, mli, mullan
This commit is contained in:
Pavel Rappo 2023-07-04 19:03:09 +00:00
parent 607ddaa0e6
commit 7b3c2dc5f4
13 changed files with 23 additions and 23 deletions

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 1996, 2022, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1996, 2023, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -92,7 +92,7 @@ final class DigitList implements Cloneable {
* f is a value 0.1 <= f < 1 arrived at by placing the digits in Digits to
* the right of the decimal.
*
* DigitList is normalized, so if it is non-zero, figits[0] is non-zero. We
* DigitList is normalized, so if it is non-zero, digits[0] is non-zero. We
* don't allow denormalized numbers because our exponent is effectively of
* unlimited magnitude. The count value contains the number of significant
* digits present in digits[].