From d734f6ddd96ac821ac028264c7202e1f371fb5eb Mon Sep 17 00:00:00 2001 From: Lance Add <1196661499@qq.com> Date: Thu, 22 Jan 2026 14:45:48 +0800 Subject: [PATCH] Update os/gcfg/gcfg_adapter_file.go Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- os/gcfg/gcfg_adapter_file.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/os/gcfg/gcfg_adapter_file.go b/os/gcfg/gcfg_adapter_file.go index cb3c4837f..99bdc5874 100644 --- a/os/gcfg/gcfg_adapter_file.go +++ b/os/gcfg/gcfg_adapter_file.go @@ -34,7 +34,7 @@ var ( type AdapterFile struct { defaultFileNameOrPath *gtype.String // Default configuration file name or file path. searchPaths *garray.StrArray // Searching the path array. - jsonMap *gmap.KVMap[string, *gjson.Json] // The pared JSON objects for configuration files. + jsonMap *gmap.KVMap[string, *gjson.Json] // The parsed JSON objects for configuration files. violenceCheck bool // Whether it does violence check in value index searching. It affects the performance when set true(false in default). watchers *WatcherRegistry // Watchers for watching file changes. }