aboutsummaryrefslogtreecommitdiff
path: root/src/database/sql
diff options
context:
space:
mode:
authorMartin Garton <garton@gmail.com>2017-06-30 20:03:27 +0100
committerBrad Fitzpatrick <bradfitz@golang.org>2017-06-30 19:11:17 +0000
commit445652f45361d4935a828f394d7f0322faa6d9ad (patch)
tree154eaba809706f550704f30b9681eceb1bd2925e /src/database/sql
parentef26021d30ffb7edf8d1da5a3155e66d6e845a94 (diff)
downloadgo-445652f45361d4935a828f394d7f0322faa6d9ad.tar.xz
database/sql: fix outdated package name in doc.txt
Change-Id: I4417c5a8537095a6464ce919b2e5cb250e179939 Reviewed-on: https://go-review.googlesource.com/47332 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'src/database/sql')
-rw-r--r--src/database/sql/doc.txt2
1 files changed, 1 insertions, 1 deletions
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.