Skip to content

Commit

Permalink
Fix javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
li-kramgopa committed Jan 22, 2024
1 parent 09ab279 commit f703ca6
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ private StreamUtil() {
/**
* A convenience {@link Collector} used for executing parallel computations on a custom {@link Executor}
* and returning a {@link Stream} instance returning results as they arrive.
* <br>
* For the parallelism of 1, the stream is executed by the calling thread.
*
* <p>For the parallelism of 1, the stream is executed by the calling thread.</p>
*
* @param mapper a transformation to be performed in parallel
* @param parallelism the max parallelism level
Expand All @@ -57,9 +57,9 @@ private StreamUtil() {
/**
* A convenience {@link Collector} used for executing parallel computations on a custom {@link Executor}
* and returning a {@link Stream} instance returning results as they arrive.
* <br>
* For the parallelism of 1 or if the size of the elements is <= batchSize, the stream is executed by the calling
* thread.
*
* <p>For the parallelism of 1 or if the size of the elements is <= batchSize, the stream is executed by the calling
* thread.</p>
*
* @param mapper a transformation to be performed in parallel
* @param parallelism the max parallelism level
Expand Down

0 comments on commit f703ca6

Please sign in to comment.