remove invalid comments

Former-commit-id: 404f9a2683890981ca643e20fce78c3c42586153
This commit is contained in:
Gerasimos (Makis) Maropoulos 2020-06-27 13:58:34 +03:00
parent ef95bac5f3
commit 47abb314ec

View File

@ -31,7 +31,6 @@ type Config struct {
Addr string
// Clusters a list of network addresses for clusters.
// If not empty "Addr" is ignored.
// Currently only RadixCluster() Driver supports it.
Clusters []string
// Password string .If no password then no 'AUTH'. Defaults to "".
Password string
@ -51,7 +50,7 @@ type Config struct {
// See https://golang.org/pkg/crypto/tls/#Config
TLSConfig *tls.Config
// Driver supports `Redigo()` or `Radix()` or `RadixCluster()` go clients for redis.
// Driver supports `Redigo()` or `Radix()` go clients for redis.
// Configure each driver by the return value of their constructors.
//
// Defaults to `Redigo()`.