8274075: Fix miscellaneous typos in java.base

Reviewed-by: dfuchs, darcy, iris, lancea, bpb
This commit is contained in:
Pavel Rappo 2021-09-23 08:08:39 +00:00
parent 8b833bbea8
commit 8799856528
9 changed files with 25 additions and 26 deletions

View file

@ -53,13 +53,13 @@ import jdk.internal.access.JavaNioAccess;
*
* <p>
* When the root spliterator is first split a mapped byte buffer will be created
* over the file for it's size that was observed when the stream was created.
* over the file for its size that was observed when the stream was created.
* Thus a mapped byte buffer is only required for parallel stream execution.
* Sub-spliterators will share that mapped byte buffer. Splitting will use the
* mapped byte buffer to find the closest line feed characters(s) to the left or
* right of the mid-point of covered range of bytes of the file. If a line feed
* is found then the spliterator is split with returned spliterator containing
* the identified line feed characters(s) at the end of it's covered range of
* the identified line feed characters(s) at the end of its covered range of
* bytes.
*
* <p>