From 76ce6ccba2cec23ae29dcb75033cfb5f279d4cb9 Mon Sep 17 00:00:00 2001 From: Jah-yee <166608075+Jah-yee@users.noreply.github.com> Date: Thu, 9 Jul 2026 04:11:19 +0800 Subject: [PATCH] fix: correct faild->failed typo in config load error message --- conf/conf.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/conf.go b/conf/conf.go index ea8b51a..743b481 100644 --- a/conf/conf.go +++ b/conf/conf.go @@ -42,7 +42,7 @@ var aproxyConfig AproxyConfig func LoadAproxyConfig(tomlFile string) error { if _, err := toml.DecodeFile(tomlFile, &aproxyConfig); err != nil { - return fmt.Errorf("Load config file [%s] faild: %s", + return fmt.Errorf("Load config file [%s] failed: %s", tomlFile, err) } return nil