瀏覽代碼

Merge pull request #794 from simplyianm/qocql-typo

Fix typo qocql -> gocql
Chris Bannister 9 年之前
父節點
當前提交
dd3f95dad7
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      session.go

+ 1 - 1
session.go

@@ -1557,7 +1557,7 @@ var (
 	ErrTooManyStmts  = errors.New("too many statements")
 	ErrUseStmt       = errors.New("use statements aren't supported. Please see https://github.com/gocql/gocql for explaination.")
 	ErrSessionClosed = errors.New("session has been closed")
-	ErrNoConnections = errors.New("qocql: no hosts available in the pool")
+	ErrNoConnections = errors.New("gocql: no hosts available in the pool")
 	ErrNoKeyspace    = errors.New("no keyspace provided")
 	ErrNoMetadata    = errors.New("no metadata available")
 )