Skip to content

Commit

Permalink
Fix Javadoc errors
Browse files Browse the repository at this point in the history
  • Loading branch information
basil committed Mar 14, 2021
1 parent d59cebc commit e295dc5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ private MoreExecutors() {}
* tasks -- even tasks that are not themselves {@code directExecutor} tasks.
* <li>If many such tasks are chained together (such as with {@code
* future.transform(...).transform(...).transform(...)....}), they may overflow the stack.
* (In simple cases, callers can avoid this by registering all tasks with the same {@link
* (In simple cases, callers can avoid this by registering all tasks with the same {@code
* MoreExecutors#newSequentialExecutor} wrapper around {@code directExecutor()}. More
* complex cases may require using thread pools or making deeper changes.)
* </ul>
Expand All @@ -76,7 +76,7 @@ private MoreExecutors() {}
* }
* }</pre>
*
* <p>This should be preferred to {@link #newDirectExecutorService()} because implementing the
* <p>This should be preferred to {@code #newDirectExecutorService()} because implementing the
* {@link ExecutorService} subinterface necessitates significant performance overhead.
*
*
Expand Down

0 comments on commit e295dc5

Please sign in to comment.