修正WaitTime注释

将等待时间注释从"毫秒 ms"修正为"秒 s"以匹配实际实现

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
gongxh
2025-07-15 10:39:59 +08:00
parent 0d79db2c58
commit 654c8755f0

View File

@@ -123,7 +123,7 @@ export class WaitTicks extends Action {
* 时间到后返回SUCCESS否则返回RUNING
*/
export class WaitTime extends Action {
/** 等待时间(ms) @internal */
/** 等待时间(秒 s) @internal */
private _duration: number;
constructor(duration: number = 0) {
super();