From 4c63ddd74448cca3a022d9a86abe60a9e8c13294 Mon Sep 17 00:00:00 2001 From: imbytecat Date: Fri, 16 Jan 2026 23:22:42 +0800 Subject: [PATCH] =?UTF-8?q?style:=20=E5=B0=86=E5=90=AF=E5=8A=A8=E8=B6=85?= =?UTF-8?q?=E6=97=B6=E6=8F=90=E7=A4=BA=E4=B8=AD=E7=9A=84=E4=B8=AD=E6=96=87?= =?UTF-8?q?=E5=86=92=E5=8F=B7=E6=94=B9=E4=B8=BA=E5=8D=8A=E8=A7=92=E5=86=92?= =?UTF-8?q?=E5=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将启动超时提示中的中文冒号改为半角冒号以保持符号一致性。 --- src/sidecar.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sidecar.rs b/src/sidecar.rs index 3ed6843..32e0e1f 100644 --- a/src/sidecar.rs +++ b/src/sidecar.rs @@ -80,7 +80,7 @@ pub fn spawn_sidecar(app_handle: tauri::AppHandle) { // 超时检查 if start_time.elapsed() > timeout { - eprintln!("✗ 启动超时:Server 未能在 5 秒内启动"); + eprintln!("✗ 启动超时: Server 未能在 5 秒内启动"); break; } }