Browse Source

fix: golint issue (#1423)

Kevin Wan 3 years ago
parent
commit
eb4b86137a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/stores/redis/redis.go

+ 1 - 1
core/stores/redis/redis.go

@@ -93,8 +93,8 @@ func New(addr string, opts ...Option) *Redis {
 	return r
 }
 
-// Deprecated: use New instead, will be removed in v2.
 // NewRedis returns a Redis.
+// Deprecated: use New instead, will be removed in v2.
 func NewRedis(redisAddr, redisType string, redisPass ...string) *Redis {
 	var opts []Option
 	if redisType == ClusterType {