From 006af4d28cd1bd1bd41aa4e0fb433ec6209a5d6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BA=90=E6=96=87=E9=9B=A8?= <41315874+fumiama@users.noreply.github.com> Date: Fri, 15 May 2026 22:50:45 +0800 Subject: [PATCH] chore: tidy err msg --- internal/zecall/errors.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/zecall/errors.go b/internal/zecall/errors.go index e1819c2..e9ab17d 100644 --- a/internal/zecall/errors.go +++ b/internal/zecall/errors.go @@ -8,7 +8,7 @@ import ( var ( // ErrNotImplemented is a stub error. - ErrNotImplemented = errors.New("zecall is not implemtent on" + runtime.GOOS + " " + runtime.GOARCH) + ErrNotImplemented = errors.New("zecall is not implemtented on " + runtime.GOOS + " " + runtime.GOARCH) // ErrZeCallNotInit please call Init() first. ErrZeCallNotInit = errors.New("zecall not init") // ErrNoSuchProcess please register the process first.