diff --git a/extras/outbounds/acl/compile.go b/extras/outbounds/acl/compile.go index b93e80f..cdd0a94 100644 --- a/extras/outbounds/acl/compile.go +++ b/extras/outbounds/acl/compile.go @@ -102,8 +102,8 @@ type GeoLoader interface { // Compile compiles TextRules into a CompiledRuleSet. // Names in the outbounds map MUST be in all lower case. // We want on-demand loading of GeoIP/GeoSite databases, so instead of passing the -// databases directly, we use a GeoLoader interface to load them. This way, they are -// only loaded when there are at least one rule that uses them. +// databases directly, we use a GeoLoader interface to load them only when needed +// by at least one rule. func Compile[O Outbound](rules []TextRule, outbounds map[string]O, cacheSize int, geoLoader GeoLoader, ) (CompiledRuleSet[O], error) { diff --git a/extras/outbounds/acl/compile_test.go b/extras/outbounds/acl/compile_test.go index e12ad3d..a11c4e8 100644 --- a/extras/outbounds/acl/compile_test.go +++ b/extras/outbounds/acl/compile_test.go @@ -269,7 +269,6 @@ func TestCompile(t *testing.T) { // Test Invalid Port Range Rule eb1 := 1 invalidRules := []TextRule{ - { Outbound: "eb1", Address: "1.1.2.0/24",