Bläddra i källkod

updated package path

Julien Schmidt 12 år sedan
förälder
incheckning
a88133db05
3 ändrade filer med 3 tillägg och 3 borttagningar
  1. 1 1
      driver.go
  2. 1 1
      driver_test.go
  3. 1 1
      errors.go

+ 1 - 1
driver.go

@@ -18,7 +18,7 @@ import (
 type mysqlDriver struct{}
 
 // Open new Connection.
-// See https://github.com/Go-SQL-Driver/MySQL#dsn-data-source-name for how
+// See https://github.com/go-sql-driver/mysql#dsn-data-source-name for how
 // the DSN string is formated
 func (d *mysqlDriver) Open(dsn string) (driver.Conn, error) {
 	var err error

+ 1 - 1
driver_test.go

@@ -18,7 +18,7 @@ var (
 	once    sync.Once
 )
 
-// See https://github.com/Go-SQL-Driver/MySQL/wiki/Testing
+// See https://github.com/go-sql-driver/mysql/wiki/Testing
 func getEnv() bool {
 	once.Do(func() {
 		user := os.Getenv("MYSQL_TEST_USER")

+ 1 - 1
errors.go

@@ -15,6 +15,6 @@ var (
 	errMalformPkt  = errors.New("Malformed Packet")
 	errPktSync     = errors.New("Commands out of sync. You can't run this command now")
 	errPktSyncMul  = errors.New("Commands out of sync. Did you run multiple statements at once?")
-	errOldPassword = errors.New("It seems like you are using old_passwords, which is unsupported. See https://github.com/Go-SQL-Driver/MySQL/wiki/old_passwords")
+	errOldPassword = errors.New("It seems like you are using old_passwords, which is unsupported. See https://github.com/go-sql-driver/mysql/wiki/old_passwords")
 	errPktTooLarge = errors.New("Packet for query is too large. You can change this value on the server by adjusting the 'max_allowed_packet' variable.")
 )