fix typo in thread command description (#2690)

pull/2693/head
obslayer 1 year ago committed by GitHub
parent 93eaede913
commit 00f7848c3a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -96,7 +96,7 @@ public class ThreadCommand extends AnnotatedCommand {
}
@Option(longName = "state")
@Description("Display the thead filter by the state. NEW, RUNNABLE, TIMED_WAITING, WAITING, BLOCKED, TERMINATED is optional.")
@Description("Display the thread filter by the state. NEW, RUNNABLE, TIMED_WAITING, WAITING, BLOCKED, TERMINATED is optional.")
public void setState(String state) {
this.state = state;
}
@ -238,4 +238,4 @@ public class ThreadCommand extends AnnotatedCommand {
process.appendResult(new ThreadModel(threadInfos[0]));
return ExitStatus.success();
}
}
}

Loading…
Cancel
Save