1
0
mirror of https://github.com/golang/go synced 2024-11-11 20:20:23 -07:00

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>
This commit is contained in:
Martin Garton 2017-06-30 20:03:27 +01:00 committed by Brad Fitzpatrick
parent ef26021d30
commit 445652f453

View File

@ -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.