소스 검색

Merge pull request #61 from kjk/patch-1

Fix doc typo
Gary Burd 11 년 전
부모
커밋
a31cb4693a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      redis/reply.go

+ 1 - 1
redis/reply.go

@@ -210,7 +210,7 @@ func Values(reply interface{}, err error) ([]interface{}, error) {
 }
 
 // Strings is a helper that converts an array command reply to a []string. If
-// err is not equal to nil, then Strings returns nil, err. If one if the array
+// err is not equal to nil, then Strings returns nil, err. If one of the array
 // items is not a bulk string or nil, then Strings returns an error.
 func Strings(reply interface{}, err error) ([]string, error) {
 	if err != nil {