2
0
mirror of https://github.com/hibiken/asynq.git synced 2024-12-25 07:12:17 +08:00

docs: small fix on semantics

This commit is contained in:
Mohammed Sohail 2024-10-19 10:07:17 +03:00
parent ae478d5b22
commit f4b56498f2
No known key found for this signature in database
GPG Key ID: 7DD45520C01CD85D

View File

@ -634,7 +634,7 @@ func NewServerFromRedisClient(c redis.UniversalClient, cfg Config) *Server {
// If the returned error is SkipRetry or an error wraps SkipRetry, retry is
// skipped and the task will be immediately archived instead.
//
// One exception to this rule is when ProcessTask returns a RevokeTask error.
// Another exception to this rule is when ProcessTask returns a RevokeTask error.
// If the returned error is RevokeTask or an error wraps RevokeTask, the task
// will not be retried or archived.
type Handler interface {