Преглед на файлове

Update doc.go

Remove vet warning in pubsub example code.
Gary Burd преди 9 години
родител
ревизия
908534c8b9
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      redis/doc.go

+ 1 - 1
redis/doc.go

@@ -127,7 +127,7 @@
 // send and flush a subscription management command. The receive method
 // converts a pushed message to convenient types for use in a type switch.
 //
-//  psc := redis.PubSubConn{c}
+//  psc := redis.PubSubConn{Conn: c}
 //  psc.Subscribe("example")
 //  for {
 //      switch v := psc.Receive().(type) {