1
0
mirror of https://github.com/fumiama/gozel.git synced 2026-06-05 00:10:24 +08:00

chore: tidy err msg

This commit is contained in:
源文雨
2026-05-15 22:50:45 +08:00
parent a95fde5243
commit 006af4d28c

View File

@@ -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.