Browse Source

fix documentation nits.

Gary Burd 12 years ago
parent
commit
98b582f8be
1 changed files with 2 additions and 2 deletions
  1. 2 2
      redis/reply.go

+ 2 - 2
redis/reply.go

@@ -111,7 +111,7 @@ func Float64(reply interface{}, err error) (float64, error) {
 //
 //  Reply type      Result
 //  bulk            string(reply), nil
-//  string          reply, nil
+//  status          reply, nil
 //  nil             "",  ErrNil
 //  other           "",  error
 func String(reply interface{}, err error) (string, error) {
@@ -137,7 +137,7 @@ func String(reply interface{}, err error) (string, error) {
 //
 //  Reply type      Result
 //  bulk            reply, nil
-//  string          []byte(reply), nil
+//  status          []byte(reply), nil
 //  nil             nil, ErrNil
 //  other           nil, error
 func Bytes(reply interface{}, err error) ([]byte, error) {