258
258
*
259
259
* <h2>Memory consistency effects</h2>
260
260
*
261
- * <p>Actions in the owner thread of, or a thread contained in, the task scope prior to
261
+ * <p> Actions in the owner thread of, or a thread contained in, the task scope prior to
262
262
* {@linkplain #fork forking} of a {@code Callable} task
263
263
* <a href="../../../../java.base/java/util/concurrent/package-summary.html#MemoryVisibility">
264
264
* <i>happen-before</i></a> any actions taken by that task, which in turn <i>happen-before</i>
@@ -385,8 +385,8 @@ private void untrack(Future<?> future) {
385
385
/**
386
386
* Invoked when a task completes before the scope is shut down.
387
387
*
388
- * <p> The {@code handleComplete} method should be thread safe. It may be
389
- * invoked by several threads at around the same .
388
+ * <p> The {@code handleComplete} method should be thread safe. It may be invoked by
389
+ * several threads concurrently .
390
390
*
391
391
* @implSpec The default implementation does nothing.
392
392
*
@@ -411,7 +411,7 @@ protected void handleComplete(Future<T> future) { }
411
411
* is cancelled then the {@code handleComplete} method may or may not be invoked.
412
412
*
413
413
* <p> If this task scope is {@linkplain #shutdown() shutdown} (or in the process
414
- * of shutting down) then {@code fork} returns a Future representing a {@link
414
+ * of shutting down) then {@code fork} returns a {@code Future} representing a {@link
415
415
* Future.State#CANCELLED cancelled} task that was not run.
416
416
*
417
417
* <p> This method may only be invoked by the task scope owner or threads contained
@@ -623,8 +623,8 @@ private boolean implShutdown() {
623
623
* join} or {@code joinUntil} will return immediately.
624
624
* </ul>
625
625
*
626
- * <p> When this method completes then the Future objects for all tasks will be
627
- * {@linkplain Future#isDone() done}, normally or abnormally. There may still be
626
+ * <p> When this method completes then the {@code Future} objects for all tasks will
627
+ * be {@linkplain Future#isDone() done}, normally or abnormally. There may still be
628
628
* threads that have not finished because they are executing code that did not
629
629
* respond (or respond promptly) to thread interrupt. This method does not wait
630
630
* for these threads. When the owner invokes the {@link #close() close} method
0 commit comments