diff --git a/common/task/task.go b/common/task/task.go index eeba1dcd..9a4f9cb6 100644 --- a/common/task/task.go +++ b/common/task/task.go @@ -6,7 +6,7 @@ import ( "github.com/xtls/xray-core/common/signal/semaphore" ) -// OnSuccess executes g() after f() returns nil. +// OnSuccess executes g() after f() returns error. func OnSuccess(f func() error, g func() error) func() error { return func() error { if err := f(); err != nil {