瀏覽代碼

Link update

Julien Schmidt 13 年之前
父節點
當前提交
d145deaac3
共有 2 個文件被更改,包括 2 次插入2 次删除
  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