Julien Schmidt 13 anos atrás
pai
commit
d145deaac3
2 arquivos alterados com 2 adições e 2 exclusões
  1. 1 1
      const.go
  2. 1 1
      driver.go

+ 1 - 1
const.go

@@ -10,7 +10,7 @@
 package mysql
 
 // Constants documentation:
-// http://forge.mysql.com/wiki/MySQL_Internals_ClientServer_Protocol
+// http://dev.mysql.com/doc/internals/en/client-server-protocol.html
 
 const (
 	MIN_PROTOCOL_VERSION = 10

+ 1 - 1
driver.go

@@ -18,7 +18,7 @@ import (
 type mysqlDriver struct{}
 
 // Open new Connection.
-// See http://code.google.com/p/go-mysql-driver/#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 e error