Przeglądaj źródła

Merge pull request #25 from jcelliott/patch-1

Fix typo in conn.go
Gary Burd 12 lat temu
rodzic
commit
77cbfc92c5
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      redis/conn.go

+ 1 - 1
redis/conn.go

@@ -244,7 +244,7 @@ func (c *conn) readReply() (interface{}, error) {
 		}
 		return r, nil
 	}
-	return nil, errors.New("redigo: unpexected response line")
+	return nil, errors.New("redigo: unexpected response line")
 }
 
 func (c *conn) Send(cmd string, args ...interface{}) error {