Skip to content

Commit

Permalink
[hotfix][docs] Fix JavaDocs typos in Task class.
Browse files Browse the repository at this point in the history
This closes apache#8025.
  • Loading branch information
liguowei authored and fhueske committed Apr 16, 2019
1 parent 3e5a240 commit 225c2a4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
* with the JobManager.
*
* <p>The Flink operators (implemented as subclasses of
* {@link AbstractInvokable} have only data readers, -writers, and certain event callbacks.
* {@link AbstractInvokable} have only data readers, writers, and certain event callbacks.
* The task connects those to the network stack and actor messages, and tracks the state
* of the execution and handles exceptions.
*
Expand All @@ -130,7 +130,7 @@ public class Task implements Runnable, TaskActions, CheckpointListener {
/** The class logger. */
private static final Logger LOG = LoggerFactory.getLogger(Task.class);

/** The tread group that contains all task threads. */
/** The thread group that contains all task threads. */
private static final ThreadGroup TASK_THREADS_GROUP = new ThreadGroup("Flink Task Threads");

/** For atomic state updates. */
Expand Down

0 comments on commit 225c2a4

Please sign in to comment.