From 50482c051ca0ba8b1b0e7da8380f4a45014fec9e Mon Sep 17 00:00:00 2001 From: astaxie Date: Tue, 16 Dec 2014 19:17:42 +0800 Subject: [PATCH] sync to chinese version fix #373 --- en/05.4.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/en/05.4.md b/en/05.4.md index 8bf850f9..c1e58ce6 100644 --- a/en/05.4.md +++ b/en/05.4.md @@ -6,7 +6,7 @@ PostgreSQL is an object-relational database management system available for many There are many database drivers available for PostgreSQL. Here are three examples of them: -- [https://github.com/bmizerany/pq](https://github.com/bmizerany/pq) supports `database/sql`, written in pure Go. +- [https://github.com/bmizerany/pq](https://github.com/lib/pq) supports `database/sql`, written in pure Go. - [https://github.com/jbarham/gopgsqldriver](https://github.com/jbarham/gopgsqldriver) supports `database/sql`, written in pure Go. - [https://github.com/lxn/go-pgsql](https://github.com/lxn/go-pgsql) supports `database/sql`, written in pure Go. @@ -33,7 +33,7 @@ An example: import ( "database/sql" "fmt" - _ "github.com/bmizerany/pq" + _ "github.com/lib/pq" "time" )