Explorar el Código

Merge pull request #434 from aaronblohowiak/ErrTooManyTimeouts-spelling

Spelling correction recieved -> received
Ben Hood hace 10 años
padre
commit
cd33d602ea
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      conn.go

+ 1 - 1
conn.go

@@ -790,7 +790,7 @@ type inflightPrepare struct {
 
 var (
 	ErrQueryArgLength    = errors.New("gocql: query argument length mismatch")
-	ErrTimeoutNoResponse = errors.New("gocql: no response recieved from cassandra within timeout period")
+	ErrTimeoutNoResponse = errors.New("gocql: no response received from cassandra within timeout period")
 	ErrTooManyTimeouts   = errors.New("gocql: too many query timeouts on the connection")
 	ErrConnectionClosed  = errors.New("gocql: connection closed waiting for response")
 )