From 445652f45361d4935a828f394d7f0322faa6d9ad Mon Sep 17 00:00:00 2001 From: Martin Garton Date: Fri, 30 Jun 2017 20:03:27 +0100 Subject: [PATCH] database/sql: fix outdated package name in doc.txt Change-Id: I4417c5a8537095a6464ce919b2e5cb250e179939 Reviewed-on: https://go-review.googlesource.com/47332 Reviewed-by: Brad Fitzpatrick --- src/database/sql/doc.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/database/sql/doc.txt b/src/database/sql/doc.txt index 405c5ed2a6..1341b5768f 100644 --- a/src/database/sql/doc.txt +++ b/src/database/sql/doc.txt @@ -31,7 +31,7 @@ Goals of the sql and sql/driver packages: * Handle concurrency well. Users shouldn't need to care about the database's per-connection thread safety issues (or lack thereof), and shouldn't have to maintain their own free pools of connections. - The 'db' package should deal with that bookkeeping as needed. Given + The 'sql' package should deal with that bookkeeping as needed. Given an *sql.DB, it should be possible to share that instance between multiple goroutines, without any extra synchronization.