Skip to content

Commit 00f7848

Browse files
authored
fix typo in thread command description (alibaba#2690)
1 parent 93eaede commit 00f7848

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/src/main/java/com/taobao/arthas/core/command/monitor200/ThreadCommand.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public void setSampleInterval(int sampleInterval) {
9696
}
9797

9898
@Option(longName = "state")
99-
@Description("Display the thead filter by the state. NEW, RUNNABLE, TIMED_WAITING, WAITING, BLOCKED, TERMINATED is optional.")
99+
@Description("Display the thread filter by the state. NEW, RUNNABLE, TIMED_WAITING, WAITING, BLOCKED, TERMINATED is optional.")
100100
public void setState(String state) {
101101
this.state = state;
102102
}
@@ -238,4 +238,4 @@ private ExitStatus processThread(CommandProcess process) {
238238
process.appendResult(new ThreadModel(threadInfos[0]));
239239
return ExitStatus.success();
240240
}
241-
}
241+
}

0 commit comments

Comments
 (0)